Search found 170 matches

by empmdk
05 Jan 2022, 23:11
Forum: Discussion
Topic: Nested Entity Form Action Rules?
Replies: 2
Views: 338

Re: Nested Entity Form Action Rules?

I'm trying to use javascript to show/hide the nested entity element on the form. Using the containing text of one field to trigger showing or hiding another field. The nested entity ID is form-group-919 . The nested entity should only show up on record creation, not when editing. This is what I have...
by empmdk
09 Dec 2021, 18:07
Forum: Bug Report version 3.0
Topic: Table List Column Collapsing With Form Open
Replies: 1
Views: 234

Table List Column Collapsing With Form Open

There is an issue with the first column in List view where there column width gets very thin when you click Add to create a record (or edit) & will stay that way until the page is refreshed. I have not tried other view types yet. See images.
by empmdk
08 Dec 2021, 07:28
Forum: Discussion
Topic: Kanban Group By User?
Replies: 1
Views: 216

Kanban Group By User?

Would it be possible to set the kanban to group by user? UPDATE: I've added an Automatic Status field with a user name as each status & filter for just the assigned user. I think this should work. But, would be nice in the future to have the user field be an option. Also, I'm trying to set up fu...
by empmdk
26 Oct 2021, 21:45
Forum: Discussion
Topic: [solved] Error_Log: PHP Warning
Replies: 8
Views: 432

Re: Error_Log: PHP Warning

What version of Rukovoditel & PHP is being used?
by empmdk
25 Oct 2021, 19:23
Forum: Discussion
Topic: Nested Entity Form Action Rules?
Replies: 2
Views: 338

Nested Entity Form Action Rules?

I'm remaking my entity structure to make it more flexible. Parent entity acts as an invoice, sub entity works as the individual jobs/tasks to allow users to assign themselves & work on them. I have a concern with the nested entity form which is used to add the individual tasks. When creating a n...
by empmdk
10 Sep 2021, 04:39
Forum: Suggestions
Topic: Duplicate Warning
Replies: 13
Views: 916

Re: Duplicate Warning

Simply adding the field type to includes/classes/fieldstypes/fieldtype_ajax_request.php seems to have fixed this. I've added fieldtype_input_vpic into the following sections. $check_fields_types = [ 'fieldtype_input', 'fieldtype_input_numeric', 'fieldtype_input_date', 'fieldtype_input_datetime', 'fi...
by empmdk
04 Sep 2021, 23:01
Forum: Suggestions
Topic: Duplicate Warning
Replies: 13
Views: 916

Re: Duplicate Warning

That is working.
How do I get the query to run when creating a new record? It is only executed when editing an existing record. For example, I copy an existing VIN number from within 30 days and paste into the form for new record. The query does not run to find the duplicate.
by empmdk
03 Sep 2021, 21:31
Forum: Discussion
Topic: Allow access to unassigned
Replies: 2
Views: 288

Re: Allow access to unassigned

You should be able to do this by changing the Admin group view access to "View" and access parameters to edit/update/delete for each entity you want them to have access to. "Views All. Access With Assigned" requires the user to be assigned to (or be the creator of) the entry befo...
by empmdk
03 Sep 2021, 18:52
Forum: Suggestions
Topic: Duplicate Warning
Replies: 13
Views: 916

Re: Duplicate Warning

OK the 2nd query looks like it's working well. However, the query doesn't seem to be executed when changing the field value while adding a record. It is only executing when clicking the edit button of an already existing record. Also, if I'm editing a record that was added within 30 days, it is show...
by empmdk
03 Sep 2021, 07:00
Forum: Suggestions
Topic: Duplicate Warning
Replies: 13
Views: 916

Re: Duplicate Warning

This is what I have so far. Trying to get it to find any entries matching the VIN field within 30 days. I will also need to add another part to the query to filter if the status field of the record is "open" or "completed". If it is not in open status, don't show warning message....