Search found 174 matches

by eddydeniro
17 Dec 2022, 18:16
Forum: Discussion
Topic: Input Protected Field is not recognized in automated action
Replies: 12
Views: 430

Re: Input Protected Field is not recognized in automated action

Ok, now I'm trying to understand the logic of your ticket application. You provided for customers a field to input password or any other credential of your products, right? I don't understand the point of adding automate action if they can enter it in time of creating ticket. If you want it encrypte...
by eddydeniro
17 Dec 2022, 17:50
Forum: Discussion
Topic: (solved) prevent collapse
Replies: 6
Views: 327

Re: prevent collapse

Try writing that unbind script in console. If it works, then it's just the matter of script execution order.
You have to wait until all original script executed.
For example, you can set timeout like this

Code: Select all

setTimeout(function(){
  $('.portlet-title').unbind('click');
},1000);
by eddydeniro
17 Dec 2022, 09:51
Forum: Discussion
Topic: Sort Attachment field by name
Replies: 1
Views: 146

Re: Sort Attachment field by name

You mean sorting file in individual field? No, I dont think it's possible.
If you mean sorting between records, just click its header in listing view.
by eddydeniro
17 Dec 2022, 09:44
Forum: Discussion
Topic: Input Protected Field is not recognized in automated action
Replies: 12
Views: 430

Re: Input Protected Field is not recognized in automated action

You can choose execute php script in automate action. Since input protected field dont hash the value, it's human readable.
With sql command in your script, just copy the value to whatever field you want it inserted.
by eddydeniro
17 Dec 2022, 09:00
Forum: Discussion
Topic: (solved) prevent collapse
Replies: 6
Views: 327

Re: prevent collapse

Then you have to remove the event listener attached to that element.
Is that info page? I guess the element's class is portlet-title, right?
Try this

Code: Select all

$('.portlet-title').unbind('click')
by eddydeniro
15 Dec 2022, 21:11
Forum: Discussion
Topic: Input Protected Field is not recognized in automated action
Replies: 12
Views: 430

Re: Input Protected Field is not recognized in automated action

Then use PHP. But why do you want to add credentials like password into ticket?
by eddydeniro
15 Dec 2022, 20:48
Forum: Discussion
Topic: how to display user ip in ticket
Replies: 3
Views: 196

Re: how to display user ip in ticket

You can try using api from 3rd party.
Create an input field (lets say field 123) and write JS form.
Example:

Code: Select all

$.getJSON("https://api.ipify.org?format=json", function(data) {
  //or from ip-api.com/json and get ip in data.query
  $("#fields_123").val(data.ip);
})
by eddydeniro
15 Dec 2022, 20:17
Forum: Discussion
Topic: Can't login with Google on your website | Google API Integration | Login with Google
Replies: 1
Views: 73

Re: Can't login with Google on your website | Google API Integration | Login with Google

Get APP ID and secret key from Google and enter them in configuration>login>social login.
by eddydeniro
13 Dec 2022, 20:26
Forum: Discussion
Topic: how to get dynamic birthday
Replies: 10
Views: 409

Re: how to get dynamic birthday

You can achieve this by creating a new field with Dynamic Date field type, set the formula so as to get the day and month of the birthday and concatenated with current year, then convert it to UNIX timestamp.
In listing, filter the new field with "Filter By Days" and set 0 as the value.
by eddydeniro
13 Dec 2022, 16:05
Forum: Discussion
Topic: RUKOVODITEL Help Needed
Replies: 5
Views: 301

Re: RUKOVODITEL Help Needed

You can use PHP code field to copy parent record to its sub entity. The field can be in parent entity or its sub entity or both, depending on your application logic. You can also use AJAX entity field in your sub entity referring to its parent entity and copy all parent values to its corresponding s...