Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

I want to reset to the values ​​of an inputfield with the data from my database at each refill data, you can?

I want to reset to the values ​​of an inputfield with the data from my database at each refill data, you can?

1 Reply
Not applicable
Author

I used a Macro in a button with this code :

sub resetInputField

  set fld = ActiveDocument.Fields("costo_maximo2")

  fld.ResetInputFieldValues 0, x

end sub

you need to change the "Requested Mode Security" to : "System Acces"

and "Current Local Secrity" to : "Allow System Acces"

all those changes in the Edit Module of the Macro.

The only bad thing here is this method dont work on the ajax client.

Regards!!!