Search found 178 matches

by techtr
30 Dec 2023, 01:52
Forum: Discussion
Topic: Make a menu item invisible?
Replies: 16
Views: 387

Re: Make a menu item invisible?

Yes, I want it hidden but not for admin.

I just sent you a private message with the code, I hope that is the right one.

Thank you very much.
by techtr
29 Dec 2023, 23:09
Forum: Discussion
Topic: Make a menu item invisible?
Replies: 16
Views: 387

Make a menu item invisible?

Hi everyone, using CSS or any other method, has anyone been able to make a menu item invisible without changing the user rights? I need this to use an info page as a landing page only without it being visible on the menu. I tried several options using the app settings, menu structure, menu configura...
by techtr
29 Dec 2023, 06:13
Forum: Discussion
Topic: Templates to export (docx) with "Export Selected"
Replies: 1
Views: 57

Templates to export (docx) with "Export Selected"

Hi everyone, I am trying to export data to a DOCX template using "Export selected" feature. It tells me to use ${table} function but I am not sure how I am going to construct this table. I am also receiving below error. I am using v3.4.4. Any ideas? Thank you. Fatal error: Uncaught Error: ...
by techtr
26 Dec 2023, 00:54
Forum: Discussion
Topic: Auto refresh listing of common reports to get new data
Replies: 13
Views: 379

Re: Auto refresh listing of common reports to get new data

Hi, I am not sure if there is any fundamental difference between refreshing the whole page and just the listing like you showed in the sample. I had a similar need and I used some extension from the Chrome store which periodically (as stated in the settings) refreshed the whole page. Now, I know the...
by techtr
22 Dec 2023, 03:26
Forum: Discussion
Topic: Help for JS to disable dropdown and date fields
Replies: 9
Views: 205

Re: Help for JS to disable dropdown and date fields

2-2 worked! Thank you very much.
by techtr
20 Dec 2023, 08:20
Forum: Discussion
Topic: Help for JS to disable dropdown and date fields
Replies: 9
Views: 205

Re: Help for JS to disable dropdown and date fields

Any suggestions will be appreciated. Thank you.
by techtr
20 Dec 2023, 08:19
Forum: Discussion
Topic: Help for extracting numeric portion of an input field.
Replies: 4
Views: 91

Re: Help for extracting numeric portion of an input field.

You can use following code. Create a "php code field" (in your example: field_8888) and use the following code. here [5792] is your origin input field. $string = [5792]; //the field number which non-number characters should be removed. $string = preg_replace('/[^0-9]/', '', $string); //re...
by techtr
19 Dec 2023, 06:27
Forum: Discussion
Topic: Help for extracting numeric portion of an input field.
Replies: 4
Views: 91

Help for extracting numeric portion of an input field.

Hi everyone. I have field# 5792 of text input type and every entry here is in the format of XY12345. I want to create another field of NUMERIC TYPE in the same entity which will extract only the numeric part of field_5792 and save. It is very important that this new field is of NUMERIC type since it...
by techtr
19 Dec 2023, 06:08
Forum: Discussion
Topic: Help for JS to disable dropdown and date fields
Replies: 9
Views: 205

Re: Help for JS to disable dropdown and date fields

Hi, visible with the value on the form but can’t change = disabled. Below or similar ones do work on text inputs but NOT on dropdown and date fields. Thank you.

$('#fields_1234').prop('disabled', true);
by techtr
18 Dec 2023, 22:42
Forum: Discussion
Topic: Help for JS to disable dropdown and date fields
Replies: 9
Views: 205

Re: Help for JS to disable dropdown and date fields

Thank you. I am checking those time to time and there are very useful samples of code there. However, I am not able to locate any sample that will specifically disable DROPDOWN and DATE type of fields. Sorry if they are there and I missed them. Can you please check and assist? Thank you.