Search found 487 matches

by Didou12
02 Jan 2024, 03:10
Forum: Discussion
Topic: Show field type "check box" values sum
Replies: 7
Views: 286

Re: Show field type "check box" values sum

I didn't know but with JS formula is more simple (calculation is automatic) : get_value([123]) where 123 is the list of checkboxes field For your total of checked (in a JS formula too) : countChecks(String([123])); function countChecks(x) { if (x === '') { return 0; } return x.split(',').length; } ...
by Didou12
01 Jan 2024, 20:18
Forum: Discussion
Topic: Show field type "check box" values sum
Replies: 7
Views: 286

Re: Show field type "check box" values sum

For score : you need an Ajax field not a JS formula. I gave you a php code not a JS.

https://docs.rukovoditel.net/index.php?p=99



For the other question. I will answer you later in the day 🙂.
by Didou12
31 Dec 2023, 19:47
Forum: Suggestions
Topic: Integration with google calendar.
Replies: 4
Views: 1369

Re: Integration with google calendar.

Any news about that ? because I think at this time, it's just one way ?

Really thank you
by Didou12
31 Dec 2023, 19:04
Forum: Suggestions
Topic: PHP custom code in HTML custom code
Replies: 0
Views: 232

PHP custom code in HTML custom code

Hi,

I suppose it's for security purpose, but sometimes, we need some logical with PHP variables (user group id, ...) to apply some JS.
by Didou12
31 Dec 2023, 18:52
Forum: Discussion
Topic: Make a menu item invisible?
Replies: 16
Views: 419

Re: Make a menu item invisible?

Nruslan2 : Yes sometimes, but with DOM manipulation in the menu, CSS doesn't work, or maybe you have a workaround ? I tried several options and it doesn't work. Maybe how custom.css is loaded before others css for the menu. Techtr : it works on my computer, it's JS so be sure to force the refresh of...
by Didou12
31 Dec 2023, 01:36
Forum: Bug Report version 3.4.4
Topic: PHP log and error_log at the root
Replies: 0
Views: 220

PHP log and error_log at the root

Hi

I think, when there is a fatal error (so a error_log is created at the root of directory), the PHP log in rukovoditel doesn't work anymore, unless deleting the error_log file.

Is it possible ? it's very annoying for tracking errors because sometimes, I don't know an error_log file is created.
by Didou12
31 Dec 2023, 00:09
Forum: Discussion
Topic: Limit Records
Replies: 13
Views: 411

Re: Limit Records

Force refresh your browser,

Can you join a screenshot ?
by Didou12
30 Dec 2023, 13:04
Forum: Discussion
Topic: Hiding access to fields
Replies: 2
Views: 101

Re: Hiding access to fields

Hello. I created a field where is possible to upload the files. However, I want to make visible (downloadable) those files only to the author, and not to the other persons. Is it possible to do and how? Thank you all this record is for author only ? or just the file field ? If just file field, I th...
by Didou12
30 Dec 2023, 12:59
Forum: Discussion
Topic: Google Map Direction from User to Job
Replies: 4
Views: 207

Re: Google Map Direction from User to Job

Yes, why you don't use AJAX field with a SQL query ?

Can you provide me ID and type of fields, also ID entities and what field ID you want to get
by Didou12
30 Dec 2023, 12:55
Forum: Discussion
Topic: Problem Using Search while Adding a New Task
Replies: 6
Views: 172

Re: Problem Using Search while Adding a New Task

why you don't use entity and records instead of global list ?