Search found 133 matches

by Benno812
16 May 2022, 14:36
Forum: Suggestions
Topic: Date format for date fields
Replies: 12
Views: 856

Re: Date format for date fields

For now my public form is obviously in italian but I can change field labels to english with some JS codes. What I'm unable to change with JS is the calendar months and weekdays. It would be surely great to have the entities and fields be multilanguage as a standard feature in Ruko but I understand ...
by Benno812
15 May 2022, 14:39
Forum: Suggestions
Topic: Date format for date fields
Replies: 12
Views: 856

Re: Date format for date fields

Hi Sergey, I join the topic to ask for an additional feature related to this one: Is there a way to set the language of the datepicker calendar for date fields? My Ruko is in italian but I have a public form mainly used by english speakers and I want the months names to be in english instead of ital...
by Benno812
13 May 2022, 22:42
Forum: Discussion
Topic: Public Forms - Cancel Button
Replies: 9
Views: 456

Re: Public Forms - Cancel Button

If you are familiar with javascript you can accomplish this without asking Sergey to add it as a feature. You just have to find the right JS method and code to add to the form.
Try this: https://stackoverflow.com/questions/378 ... javascript
by Benno812
02 May 2022, 12:53
Forum: Discussion
Topic: Rukovoditel 3.1 BETA 1 is ready to test
Replies: 13
Views: 1054

Re: Rukovoditel 3.1 BETA 1 is ready to test

Hi Sergey,
Is the Process on Schedule feature included in 3.1?
I'm asking before updating because the docs https://docs.rukovoditel.net/index.php?p=133 says it will be included in 3.1 but in the changelog https://www.rukovoditel.net/new_release.php?version=3.1 it is not mentioned.
Thank you!
by Benno812
22 Apr 2022, 02:23
Forum: Suggestions
Topic: Auto delete record on condition
Replies: 2
Views: 223

Re: Auto delete record on condition

I was thinking about it but that's a 3.1 feature and i'm still on 3.0. I'm pretty sure the feature is not included in 3.1 Beta 1
by Benno812
21 Apr 2022, 21:56
Forum: Suggestions
Topic: Auto delete record on condition
Replies: 2
Views: 223

Auto delete record on condition

Hi Sergey, is there a way to make a record auto delete itself on a specific condition, for example after some time has passed? I have an entity which represent appointments on a resource timeline, but I want them to be deleted after the appointment date has passed so the DB doesnt remain full of use...
by Benno812
08 Apr 2022, 12:48
Forum: Discussion
Topic: How To hide the info section
Replies: 3
Views: 288

Re: How To hide the info section

Just add this css code to your custom CSS page: .col-md-4 { display: none; } Next, to make the other column full width: .col-md-8 { width: 100%; } I'm not sure if .col-md-4 and .col-md-8 classes are used in other ways inside Ruko, so if they will be hidden where they shouldnt, maybe Sergey can confi...
by Benno812
16 Mar 2022, 14:47
Forum: Suggestions
Topic: Logo Setting
Replies: 5
Views: 472

Re: Logo Setting

To hide the logo image in the login-page and preserve the page layout, just add this CSS code to your default.css file:

Code: Select all

body > div.login-page-logo > a {
    opacity: 0;
}
Remember to NOT overwrite the default.css when updating Rukovoditel.
by Benno812
12 Mar 2022, 21:46
Forum: Discussion
Topic: How to suppress "Displaying x to x (of x items)" ?
Replies: 4
Views: 232

Re: How to suppress "Displaying x to x (of x items)" ?

Glad it helped!
Feel free to ask for more tips.
by Benno812
12 Mar 2022, 20:09
Forum: Discussion
Topic: How to suppress "Displaying x to x (of x items)" ?
Replies: 4
Views: 232

Re: How to suppress "Displaying x to x (of x items)" ?

Alternatively, you can add some custom CSS to hide it.

This one should work:

Code: Select all

.entity_items_listing > div.row > div.col-md-5.col-sm-12 {
    display: none;
}