Search found 655 matches

by enishemed
16 May 2023, 15:30
Forum: Suggestions
Topic: Allow entity specific Editing of the Name "Comments"
Replies: 7
Views: 290

Re: Allow entity specific Editing of the Name "Comments"

Can we also change the menu icon for the comments.
by enishemed
01 May 2023, 18:47
Forum: Discussion
Topic: Help with dropdown Ajax field type
Replies: 2
Views: 87

Re: Help with dropdown Ajax field type

In condition tab of users Ajax field type, you can use some code like the followings.

Code: Select all

find_in_set(123,e.field_33)
Or

Code: Select all

e.field_33 = 123
Or

Code: Select all

e.field_33 in (68,69)
For more information: https://docs.rukovoditel.net/index.php? ... _condition
by enishemed
26 Apr 2023, 12:32
Forum: Suggestions
Topic: Toogle On/Off tab for Quick Filter Panels
Replies: 4
Views: 349

Re: Toogle On/Off tab for Quick Filter Panels

Dear Sergey,

What do you think about toogle on/off for quick filter panels. Sometimes thare are many filters and take a lot of space. I have already sent you the codes. You can adapt it for version 3.4

Thanks.
by enishemed
03 Apr 2023, 12:33
Forum: Discussion
Topic: How to display value from the parent entity on the form
Replies: 9
Views: 324

Re: How to display value from the parent entity on the form

I agree with Sergey, date should be saved in db as unix timestamp. But if you want to save the date as string (not a date) in ajax field, change the code like this.

Code: Select all

$form_field_value = date('l, F d, Y', $value); //value to save in database
by enishemed
30 Mar 2023, 10:45
Forum: Discussion
Topic: PHP field HTML
Replies: 1
Views: 86

Re: PHP field HTML

If you set $output_value variable like this, yes.

Code: Select all

$output_value = '<a href="http://rukovoditel.net">Rukovoditel Web Site</a>';
by enishemed
28 Mar 2023, 10:38
Forum: Discussion
Topic: How to display value from the parent entity on the form
Replies: 9
Views: 324

Re: How to display value from the parent entity on the form

The following code should work. $parent_item_id = $_POST['parent_item_id']; //parent item id //create MySql query $query = db_query("select field_579 as value from app_entity_27 where id = " . $parent_item_id,false); //if found row then do calculation if($parent = db_fetch_array($query)) {...
by enishemed
27 Mar 2023, 22:20
Forum: Discussion
Topic: How to display value from the parent entity on the form
Replies: 9
Views: 324

Re: How to display value from the parent entity on the form

I think you can use Ajax field usinf some php code to display a parent entity value on sub entity modal form.
by enishemed
21 Mar 2023, 10:20
Forum: Discussion
Topic: MySQL Formula progress bar
Replies: 2
Views: 217

Re: MySQL Formula progress bar

I have a solution like this. Entities: Projects - Tasks (has progress field type and entity type-phases) - Phases (has progress field type) Create a process with "execute php script" for task entity.. Execute process after item created and after item updated. In my scenario, I have project...
by enishemed
10 Mar 2023, 10:07
Forum: Discussion
Topic: API telegram and whatsapp
Replies: 11
Views: 927

Re: API telegram and whatsapp

Hi rubinhc, I think the following code can work for you. Let's say your message is like below. The first part (before ***) is your sms text to send to the customer and second part (after ***) is the api key. Be careful, I use "***" as an indicator to separete the text and api key. It shoul...