Search found 235 matches

by karahan
30 Oct 2023, 10:16
Forum: Discussion
Topic: Full application localization
Replies: 4
Views: 406

Re: Full application localization

Hi, no up to this moment. Still waiting on Sergey.
Perhaps there is a better way, but this was an attempt to contribute.
by karahan
18 Sep 2023, 12:33
Forum: Discussion
Topic: Auto populate form fields using Ajax Request Field and JS, or Automate Action Button on input form or...?
Replies: 2
Views: 174

Re: Auto populate form fields using Ajax Request Field and JS, or Automate Action Button on input form or...?

Hi Davor, I think I had some similar issue, my workaround (although for just one field) was to create a "shadow copy" of requested field as "ajax", then copy value via js. This ajax field is set to be "read only" so it is not shown inside form. It is not an elegant solu...
by karahan
11 Sep 2023, 12:51
Forum: Discussion
Topic: XML format date / number
Replies: 11
Views: 860

Re: XML format date / number

Excellent, thank you Sergey.
by karahan
07 Sep 2023, 22:20
Forum: Discussion
Topic: XML format date / number
Replies: 11
Views: 860

Re: XML format date / number

Dear Sergey, would it be possible to enable mathematic operations within xml export template? For example: <xmltag>[field_1]*[field_2]</xmltag> or <xmltag>[field_1]*2</xmltag> etc (divide, sum...) There are cases when fields required in xml template are not directly present in database. On the other...
by karahan
28 Aug 2023, 16:25
Forum: Discussion
Topic: Set date dinamically
Replies: 1
Views: 83

Re: Set date dinamically [Solved]

Found it, it was actually very easy.
by karahan
28 Aug 2023, 13:13
Forum: Discussion
Topic: Set date dinamically
Replies: 1
Views: 83

Set date dinamically

Hi, I have two date fields (editable): date of invoice and due date. Also, one integer fields (days). What I want to achieve is, to dinamically set "due date" or "days" fields, based on inputs in these fields. Example: - invoice date: 2023-08-01 - days: 30 (user entry) - due date...
by karahan
16 Aug 2023, 19:17
Forum: Discussion
Topic: XML format date / number
Replies: 11
Views: 860

Re: XML format date / number

Excellent, thank you Sergey.
by karahan
15 Aug 2023, 15:11
Forum: Discussion
Topic: XML format date / number
Replies: 11
Views: 860

Re: XML format date / number

Hi,

In the documentation you covered date conversion and also gave the example for google map field.
There is no example for number conversion so I assume it is not supported?

For now I simply changed the field number output and got the desired result.
Thanks.
by karahan
15 Aug 2023, 12:30
Forum: Discussion
Topic: XML format date / number
Replies: 11
Views: 860

Re: XML format date / number

Thank you, I tried different approach ("echo", "return" etc) but could not make it working.
I hope Sergey can give some example of how to format numbers in xml template.
Thank you.
by karahan
14 Aug 2023, 22:12
Forum: Discussion
Topic: XML format date / number
Replies: 11
Views: 860

Re: XML format date / number

Dear Sergey, it is really a great feature. Date format from your example was not what I needed. I solved the problem using: <?php return date('Y-m-d'); ?> This is result (ok): 2023-03-31 But, I did not find example how to convert number in format only with decimal dot. Currently in my application nu...