How to Get Button Pressed Effect on IPad with Stock or Jqwigets buttons.: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Created page with "Function Button1_ontouchstart() $("#Button1").jqxButton({ theme:"classic", width:"300", height:"100",roundedCorners:"jqx-rc-all", disabled:False }); $("#Button1").button("refr...")
 
No edit summary
 
Line 1: Line 1:
<pre>
Function Button1_ontouchstart()
Function Button1_ontouchstart()
$("#Button1").jqxButton({ theme:"classic", width:"300", height:"100",roundedCorners:"jqx-rc-all", disabled:False });
$("#Button1").jqxButton({ theme:"classic", width:"300", height:"100",roundedCorners:"jqx-rc-all", disabled:False });
Line 8: Line 9:
$("#Button1").button("refresh");
$("#Button1").button("refresh");
End Function
End Function
</pre>

Latest revision as of 15:35, 14 August 2013

Function Button1_ontouchstart()
$("#Button1").jqxButton({ theme:"classic", width:"300", height:"100",roundedCorners:"jqx-rc-all", disabled:False });
$("#Button1").button("refresh");
End Function

Function Button1_ontouchend()
$("#Button1").jqxButton({ theme:"shinyblack", width:"300", height:"100",roundedCorners:"jqx-rc-all", disabled:False });
$("#Button1").button("refresh");
End Function