Search found 60 matches
- 25 Feb 2021, 04:23
- Forum: Discussion
- Topic: Hello World Plugin not in menu
- Replies: 3
- Views: 90
Re: Hello World Plugin not in menu
Please try reinstalling the plugin and then post any errors that you get.
- 24 Feb 2021, 21:34
- Forum: Discussion
- Topic: Change Parent ID in sub-entity edit form
- Replies: 2
- Views: 83
Re: Change Parent ID in sub-entity edit form
To clarify, you want to change some of the fields in entity A after inserting records in entity B? But you don't want those entity A fields or their data to show on the edit form of entity B?
- 17 Feb 2021, 08:00
- Forum: Discussion
- Topic: Hello World Plugin not in menu
- Replies: 3
- Views: 90
Re: Hello World Plugin not in menu
Are you logged on as a user in the Administrators group?
What were the errors you got as you shouldn't been getting them and that might point to other issues.
What were the errors you got as you shouldn't been getting them and that might point to other issues.
- 15 Feb 2021, 05:42
- Forum: Discussion
- Topic: Automate Actions - Set Fields with php/mysql
- Replies: 2
- Views: 105
Re: Automate Actions - Set Fields with php/mysql
Yes it is possible, have you checked out the MySQL and PHP help pages?
https://docs.rukovoditel.net/index.php?p=12
https://docs.rukovoditel.net/index.php?p=12
- 07 Feb 2021, 23:57
- Forum: Discussion
- Topic: Birthday Month
- Replies: 2
- Views: 73
Re: Birthday Month
You can create a report that filters on the Birthday field with;
Condition - Filter by Month
Filter by Month - 0&+1
Condition - Filter by Month
Filter by Month - 0&+1
- 06 Feb 2021, 00:34
- Forum: Discussion
- Topic: Automate Action: Link records by MySQL query
- Replies: 15
- Views: 439
Re: Automate Action: Link records by MySQL query
Your query is trying to select from app_entity_1 where 1=1
I suspect that should be id=1
I suspect that should be id=1
- 09 Jan 2021, 21:57
- Forum: Discussion
- Topic: JS in forms size limit for code
- Replies: 8
- Views: 165
Re: JS in forms size limit for code
Do you have any errors in the javascript console?
How do you know your external file is being loaded properly?
Is it the event handlers or the function calls, or both (in the external js file) that aren't working?
How do you know your external file is being loaded properly?
Is it the event handlers or the function calls, or both (in the external js file) that aren't working?
- 24 Dec 2020, 03:55
- Forum: Discussion
- Topic: Users Access Groups report
- Replies: 6
- Views: 157
Re: Users Access Groups report
If you use Chrome then maybe you could use an extension like Table Capture to copy the HTML table in Rukovoditel to a spreasheet app?
https://chrome.google.com/webstore/deta ... ated?hl=en
https://chrome.google.com/webstore/deta ... ated?hl=en
- 22 Dec 2020, 08:49
- Forum: Discussion
- Topic: How best to create more compact screen format?
- Replies: 12
- Views: 317
Re: How best to create more compact screen format?
On further investigation, when I inspect a webpage "element" to see what changes to make, some of the CSS code is coming from "default.css", but other code is coming from "bootstrap.min.css". What is the relationship between these two CSS files (and the actual path of bootstrap.min.css being used)?...
- 20 Dec 2020, 09:01
- Forum: Discussion
- Topic: How best to create more compact screen format?
- Replies: 12
- Views: 317
Re: How best to create more compact screen format?
Both the skin css and the default.css files will be loaded as well as any css that you put in the Custom CSS on page load. If you want to make sure that any duplicate css setting in your skin takes precedence then you can add !important after the setting. e.g. #selector { /* override paragraph setti...