Search found 174 matches

by eddydeniro
17 Sep 2021, 07:16
Forum: Discussion
Topic: Tab in Formular and visibility rules
Replies: 2
Views: 282

Re: Tab in Formular and visibility rules

No setting for that in current version, I guess. As a workaround, because each tab has its own unique ID, you have two alternatives: 1. Use Ajax Request This method is slower because it's executed after the form displayed. Let's say your tab ID = 100 //only for admin if($app_user['group_id']!=0){ ec...
by eddydeniro
15 Sep 2021, 20:27
Forum: Discussion
Topic: No decimal values when summing everything in the list
Replies: 7
Views: 420

Re: No decimal values when summing everything in the list

I dont think you have defined the number format because in listing, the numbers are displayed based on your input.
NumberFormat.png
In the example, I set two decimal points.
by eddydeniro
15 Sep 2021, 05:23
Forum: Suggestions
Topic: System and application files
Replies: 0
Views: 216

System and application files

Hi Sergey, What if Rukovoditel files are divided into system and application categories? That way, we can install multiple applications and databases with only one system file. It requires less space and can be more secured to place the system files above the doc root of server. I've had situation t...
by eddydeniro
15 Sep 2021, 04:59
Forum: Discussion
Topic: Year on auto increment
Replies: 6
Views: 534

Re: Year on auto increment

Thanks for the info and code!!! Ill try it and let you know if it works. Thanks again!! I rechecked the code since you want to test it. Because the increment-number class searches the min/max number of entire table, I guess you'd better use PHP code alone. I revised the code: if(!strlen($current_fi...
by eddydeniro
15 Sep 2021, 03:25
Forum: Discussion
Topic: entity ID in js in form
Replies: 2
Views: 282

Re: entity ID in js in form

In the form, I can see only one place that contains the record id, the attribut action of the form. Here what I usually extract the id: const formAction = new URLSearchParams($('#items_form').attr('action')); var id = 0; //check if id exists, because for a new item, it doesnt if(formAction.has('id')...
by eddydeniro
15 Sep 2021, 00:34
Forum: Discussion
Topic: No decimal values when summing everything in the list
Replies: 7
Views: 420

Re: No decimal values when summing everything in the list

Specify the number format (example "2/./,"), you'll get decimal in totals.
by eddydeniro
14 Sep 2021, 14:27
Forum: Bug Report version 2.9
Topic: Modal Window Error on macOS
Replies: 4
Views: 1902

Re: Modal Window Error on macOS

What is the server response when you clicked to display modal window?
by eddydeniro
14 Sep 2021, 10:38
Forum: Discussion
Topic: Inserting new record
Replies: 20
Views: 1443

Re: Inserting new record

With inline editing it's hard to control required and unique input. So that is why I did pupop and popup without reloading window so it works fast and should be useful. You're right, that's what I'm still struggling with: controlling the input attribute & field accessibility and triggering othe...
by eddydeniro
14 Sep 2021, 09:01
Forum: Discussion
Topic: [SOLVED] Template CSS is ruined in Email Attachment
Replies: 20
Views: 997

Re: Template CSS is ruined in Email Attachment

Try this and see if it could solve your problem.
Click SOURCE on your template editor, move your css between tag <style></style>, before all HTML code.
by eddydeniro
13 Sep 2021, 20:23
Forum: Discussion
Topic: Inserting new record
Replies: 20
Views: 1443

Re: Inserting new record

In version 3.0, a new option "Editable fields in the listing" will be available. See https://www.facebook.com/RukovoditelProject/videos/554658809107950/ Yess! That's great news, Sergey! Pop-up editing in the listing will be very handy for users. Maybe you considered to add or combine it w...