Search found 174 matches

by eddydeniro
09 Dec 2021, 14:24
Forum: Discussion
Topic: Rest API questions
Replies: 13
Views: 1559

Re: Rest API questions

Glad you've finally figured out how the plugin works.
Yes, that string in request body is the query string that's sent to server
by eddydeniro
09 Dec 2021, 14:20
Forum: Discussion
Topic: Warning: Use of undefined constant TEXT_COPY_RECORD
Replies: 3
Views: 277

Re: Warning: Use of undefined constant TEXT_COPY_RECORD

You mean you're unable to find the language file or you have no access to your website directory? Anyway, if you download the language files from rukovoditel.net, find the file in plugins folder and copy to related folder of your app. ... im also an ability to find a language File on my website dire...
by eddydeniro
09 Dec 2021, 13:52
Forum: Discussion
Topic: Dynamic update of JS Formula Field after Formula Change
Replies: 2
Views: 312

Re: Dynamic update of JS Formula Field after Formula Change

What I understand, JS formula is client-side and MySQL formula is server-side. So you cannot make JS Formula dynamically recalculating when its formula is changed because the calculation itself occured when the form is opened. That's why the result is recorded in database. If you use MySQL formula, ...
by eddydeniro
08 Dec 2021, 18:58
Forum: Discussion
Topic: Warning: Use of undefined constant TEXT_COPY_RECORD
Replies: 3
Views: 277

Re: Warning: Use of undefined constant TEXT_COPY_RECORD

Make sure you download the language files.
Constant TEXT_COPY_RECORD is in extension's language file.
by eddydeniro
08 Dec 2021, 18:56
Forum: Discussion
Topic: AJAX field calculation behavior
Replies: 8
Views: 510

Re: AJAX field calculation behavior

You can replace the previous code with this one. Both code has the same result, but different way. The first is via cloning the element, the second directly change the keyup into blur (lost-focus) event. You can choose one of them and put it in form JS. Thank you sir, appreciate your answer. I could...
by eddydeniro
08 Dec 2021, 04:26
Forum: Discussion
Topic: AJAX field calculation behavior
Replies: 8
Views: 510

Re: AJAX field calculation behavior

I think that's related with regional settings of your OS, esp. number format. You can change it in control panel. That way comma is recognized as decimal separator in all application, not only in Rukovoditel. But if you're sure enough your Ruko users will have the default number format settings, whi...
by eddydeniro
07 Dec 2021, 20:35
Forum: Discussion
Topic: AJAX field calculation behavior
Replies: 8
Views: 510

Re: AJAX field calculation behavior

I agree with Sergey, you dont have anything processed in or fetched from server, so JS field is better choice. Anyway, if you really want to trigger Ajax on lost-focus only, you might try JS in form. The trick is to clone the input to remove the keyup listener, and attach new listener. //clone field...
by eddydeniro
04 Dec 2021, 14:29
Forum: Discussion
Topic: Show image in public form
Replies: 4
Views: 434

Re: Show image in public form

Your $item_id should be based on dropdown field to look where the image is saved in app_entity_40, not on the Ajax request field. I've tried to do a similar thing, but I'm struggling. I have [Enitity 40], the Ajax Image field is [732] and the Ajax request field is [1814] I try the following code: $i...
by eddydeniro
30 Nov 2021, 12:14
Forum: Discussion
Topic: Rest API questions
Replies: 13
Views: 1559

Re: Rest API questions

In key-value pairs, all data should be paired in key-value pattern, including nested array. So the nested array like this: items:[ { id:1, date_added:2021-01-13 }, { id:2, date_added:2021-01-14 } ] must be converted : items[0][id] : 1 items[0][date_added] : 2021-01-13 I'm using Postman to test the A...
by eddydeniro
27 Nov 2021, 02:19
Forum: Discussion
Topic: Rukovoditel 3.0 BETA 2 is ready to test
Replies: 6
Views: 1494

Re: Rukovoditel 3.0 BETA 2 is ready to test

About the new feature Form Wizard, I was expecting that users cannot jump to the next tabs before they finish the current one, esp. filling the required fields. With the Next button, it worked as expected. However they can actually jump by clicking the next tab headers and losing the purpose of sequ...