Search found 174 matches

by eddydeniro
27 Aug 2021, 16:01
Forum: Discussion
Topic: Export with paths for uploads
Replies: 3
Views: 308

Re: Export with paths for uploads

Have you tried to move all attachment files without changing the folder structure into new app?
I think, with the same database content and the same attachment folder structure, Rukovoditel will always recognize where and what file uploaded before, encrypted or not.
by eddydeniro
27 Aug 2021, 14:25
Forum: Suggestions
Topic: Custom JS in Configuration
Replies: 8
Views: 588

Re: Custom JS in Configuration

By creating a plugin and one entity to contain the custom script. I take main.js as the target file where I insert it. The plugin provide codemirror textarea where you write the script you want. After saving to database, the plugin reads the main.js, inject the script, save it back to main.js. I put...
by eddydeniro
26 Aug 2021, 19:48
Forum: Discussion
Topic: db_query to SELECT multiple records
Replies: 2
Views: 300

Re: db_query to SELECT multiple records

Function db_query will result mysqli_result object. When you use "if" to fetch the object, you'll just get an associative array. For multidimensional array, use "while" as it would iterate all rows, and then put each row data in a variable. $qrystr = "SELECT id, parent_id FR...
by eddydeniro
26 Aug 2021, 16:46
Forum: Suggestions
Topic: Custom JS in Configuration
Replies: 8
Views: 588

Re: Custom JS in Configuration

I think I've figured out how to apply custom JS in application level while maintaining upgradeability to the new release.
Still it will be nice if this feature is merged officially.
by eddydeniro
26 Aug 2021, 09:01
Forum: Suggestions
Topic: Custom JS in Configuration
Replies: 8
Views: 588

Custom JS in Configuration

Hi Sergey,

In several case, I need more customization that can only be achieved with JS, because custom CSS can't do enough.
Is there anyway I can apply custom JS in the current release?
If not, perhaps you would consider to provide Custom JS in the Configuration page for the next one.

Thanks
by eddydeniro
26 Aug 2021, 00:39
Forum: Discussion
Topic: Function MySQL
Replies: 6
Views: 436

Re: Function MySQL

Use the ID number
IF([768]=5578 AND [995]=362,[774]*1.21,[774])
by eddydeniro
23 Aug 2021, 19:41
Forum: Discussion
Topic: Changing Web Host
Replies: 4
Views: 288

Re: Changing Web Host

Delete only "DEFINER=`storium`@`localhost`".
The statement would be "CREATE FUNCTION `rukovoditel_days_diff`....."
by eddydeniro
23 Aug 2021, 19:37
Forum: Suggestions
Topic: Rules display fields in the form
Replies: 1
Views: 305

Re: Rules display fields in the form

Yes, it would be easier to manage which tab to display or hide based on user selection of a field. For now, you can use Javascript in Form Configuration for that. Every field and form tab have their own ID. For example, in entity Project I want to hide tab "Team" if user set Priority to Ur...
by eddydeniro
23 Aug 2021, 18:15
Forum: Discussion
Topic: Changing Web Host
Replies: 4
Views: 288

Re: Changing Web Host

Obviously you don't have the privilege with the user `storium`@`localhost`.
Try CREATE FUNCTION bla bla... (without DEFINER=`storium`@`localhost`)
by eddydeniro
23 Aug 2021, 18:05
Forum: Discussion
Topic: Exporting Data File with Picture / Images to Excel
Replies: 14
Views: 1586

Re: Exporting Data File with Picture / Images to Excel

I see. Here the fix.
nruslan2 wrote: 22 Aug 2021, 16:03 this is cool, but this decision has bugs:
-folder mod
-not use if Enable Encrypt files

But I fixed it for myself))
Thanks!