Author Topic: PushButton Syntax using multiple parameters  (Read 2169 times)

Rahul Gera

  • GuiXT Forum
  • Newbie
  • *
  • Posts: 88
    • View Profile
PushButton Syntax using multiple parameters
« on: March 01, 2017, 09:35:40 AM »
Liquid UI Code:

ScreenScript:
pushbutton([1,10], "TEXT LABEL", "/0", {"process":inputfunction,"using":{'label1':z_guixt_var1, 'label2':z_guixt_var2}});

Function Script:
function inputfunction(param){
           z_label1=param.label1;
           z_label2=param.label2;
 }
« Last Edit: March 01, 2017, 09:48:42 AM by Rahul Gera »