Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
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!!!