Search found 174 matches

by eddydeniro
26 May 2023, 22:56
Forum: Discussion
Topic: bulk update sub entity
Replies: 10
Views: 423

Re: bulk update sub entity

In single level import, 'update by' options are by the ID and heading field. In multilevel import, update by is only by the heading field. Just bind the heading of each level. As long as the parent heading is unique, the app will recognize that as the ID and can update sub entity data accordingly. Y...
by eddydeniro
23 May 2023, 20:21
Forum: Discussion
Topic: How to trigger Ajax Request
Replies: 2
Views: 206

Re: How to trigger Ajax Request

To trigger ajax request, I think you just have to trigger "change" of any field that is used for variable in your ajax php code. I see in your code, you used [1910] and [1911].

Code: Select all

$("#fields_1910").trigger("change");
by eddydeniro
23 May 2023, 20:16
Forum: Discussion
Topic: bulk update sub entity
Replies: 10
Views: 423

Re: bulk update sub entity

This subentity data has parent field? If yes, I think it's possible for you to update from the parent level with multi-level import down to your subentity. Rukovoditel recognizes "heading" as your parent ID.
by eddydeniro
23 May 2023, 20:06
Forum: Discussion
Topic: Can you show a nested entity field from within a nested entity form?
Replies: 4
Views: 221

Re: Can you show a nested entity field from within a nested entity form?

If we look at the source code, I think the third level of nested form is currently not supported. In the fields-in-listing conf (if you choose "new window"), the nested-form field is shown but the actual output will be empty. If you open Dev tools in your browser, the Add button of your ne...
by eddydeniro
05 Jan 2023, 19:14
Forum: Discussion
Topic: Javascript in Form and new record ( or not )
Replies: 6
Views: 239

Re: Javascript in Form and new record ( or not )

Based on what Sergey pointed, you can try this to display alert after submitting new record: const urlParams = new URLSearchParams($('form#items_form').attr('action')); const params = Object.fromEntries(urlParams .entries()); if(typeof(params.id)==='undefined'){ alert("Some alert here!"); }
by eddydeniro
04 Jan 2023, 11:02
Forum: Discussion
Topic: Automated actions for more records
Replies: 5
Views: 449

Re: Automated actions for more records

What array do you mean? You can read more here https://docs.rukovoditel.net/index.php?p=125
by eddydeniro
04 Jan 2023, 10:57
Forum: Discussion
Topic: Bi-directionnal entity fields
Replies: 2
Views: 208

Re: Bi-directionnal entity fields

This is interesting.
Actually I have implemented this "cross-reference" thing by extending the entity and entity AJAX field type and yes, it is very helpful for data relationship.
I think you can move this topic to Suggestion.
by eddydeniro
04 Jan 2023, 10:47
Forum: Discussion
Topic: Advice for document approval
Replies: 1
Views: 140

Re: Advice for document approval

Rukovoditel has a specific field type Approve for this purpose. You can assign persons for the approval, manually or automatically, with the form. The button Approve will appear on listing view or info page. It also give you a signature area. I think that should be simple enough for approval process...
by eddydeniro
19 Dec 2022, 08:30
Forum: Discussion
Topic: Input Protected Field is not recognized in automated action
Replies: 12
Views: 430

Re: Input Protected Field is not recognized in automated action

What about the Encrypted field types? Will it be supported too in 3.3?
support wrote: 19 Dec 2022, 08:17 Added Input Protected Field to auto actions. It will be available in 3.3 soon.
by eddydeniro
18 Dec 2022, 16:18
Forum: Discussion
Topic: Input Protected Field is not recognized in automated action
Replies: 12
Views: 430

Re: Input Protected Field is not recognized in automated action

Ok, basically you need to create a ticketing system as simple and as clear as possible. Using automate action is one of many ways to achieve that. I have once created a ticketing system for my company so I hid several fields, modified it a little to match your scenario: displaying button if credenti...