Search found 94 matches

by kubera
09 Jan 2021, 01:20
Forum: Translations
Topic: Polish translation for 2.8 and Extensions 2.8
Replies: 1
Views: 322

Polish translation for 2.8 and Extensions 2.8

Updated polish translation for 2.8 (Core and Extensions)
polish_2.8.7z
(50.61 KiB) Downloaded 142 times
by kubera
15 Dec 2020, 00:26
Forum: Suggestions
Topic: Filter panel modification
Replies: 3
Views: 469

Re: Filter panel modification

@support - any thoughts about it?
by kubera
26 Nov 2020, 21:34
Forum: Suggestions
Topic: Filter panel modification
Replies: 3
Views: 469

Filter panel modification

Hi My colleagues asked to be able to quickly activate / deactivate filters by clicking additional button. I have made small changes in code on my own as below screenshot shown. filterpanel.jpg I found this a very useful feature that will speed things up. The user does not have to open the filter edi...
by kubera
18 Nov 2020, 13:55
Forum: Discussion
Topic: Simulate Click Event in JQuery
Replies: 6
Views: 732

Re: Simulate Click Event in JQuery

PROBLEM: When the form is being loaded, Ajax request has not been fired and the variables getting their assignments in Ajax request are not defined in JS in forms. After any event takes place in the form, Ajax request fires and the variables get their assignments. This is the reason why I am asking...
by kubera
09 Nov 2020, 11:08
Forum: Discussion
Topic: Hide or disable dateTimePicker in Forms
Replies: 7
Views: 508

Re: Hide or disable dateTimePicker in Forms

enishemed wrote: 09 Nov 2020, 08:44 To disable dropdown.

Code: Select all

$('#fields_406').attr("disabled", true);
It works for simple dropdown but not for dropdown with searchbox.
I use

Code: Select all

$('#fields_1689_rendered_value').css('pointer-events', 'none');
by kubera
09 Nov 2020, 00:28
Forum: Discussion
Topic: Hide or disable dateTimePicker in Forms
Replies: 7
Views: 508

Re: Hide or disable dateTimePicker in Forms

Code: Select all

$('#fields_406_rendered_value').find('.input-group-btn').hide()
It hides datetimepicker button for 'fields_406'

Code: Select all

$('#fields_406_rendered_value').find('.input-group-btn').css('pointer-events', 'none');
It disables the datetimepicker button
by kubera
08 Nov 2020, 23:42
Forum: Discussion
Topic: Hide or disable dateTimePicker in Forms
Replies: 7
Views: 508

Re: Hide or disable dateTimePicker in Forms

Hi
I thing you should read this viewtopic.php?p=9374
by kubera
29 Sep 2020, 11:04
Forum: Discussion
Topic: How to make a field read only on a public form?
Replies: 13
Views: 966

Re: How to make a field read only on a public form?

Hello Kubera, The setting for the date field works perfect. With this setting the field is no longer editable and the picker icon is disabled. The only thing left is that the field not greyed out. 4.png Thanks and regards, Bas $('#ields_740').css({"background-color":"rgb(250, 250, 25...
by kubera
28 Sep 2020, 22:32
Forum: Discussion
Topic: How to make a field read only on a public form?
Replies: 13
Views: 966

Re: How to make a field read only on a public form?

Hello Kubera, $('#fields_740').attr('disabled', 'disabled'); works as a charm on character and numeric fields. The date picker seems to override the readonly state as the date is sill updatable. I'll get "creative" on the date field and change it to character field as it's for display pur...
by kubera
28 Sep 2020, 17:18
Forum: Discussion
Topic: How to make a field read only on a public form?
Replies: 13
Views: 966

Re: How to make a field read only on a public form?

So maybe this will work

Code: Select all

$('#fields_740').attr('disabled', 'disabled');