Harry Rogers Posted March 16, 2012 Posted March 16, 2012 I get how to set a text property of a UniGui form element in a JS event e.g. SimpleEvents from Demos ClientEvents-1 function OnClick(sender, e) { MainForm.UniLabel1.setText('Click!'); } But how to read them ? function OnClick(sender, e) { alert(MainForm.UniLabel1.getText); } Produces an alert box ok but the text is 'undefined' Same result for alert(MainForm.UniLabel1.Value); alert(MainForm.UniLabel1.Text); alert(MainForm.UniLabel1.Text.Value); Many thanks Quote
tzal Posted March 16, 2012 Posted March 16, 2012 function OnClick(sender, e) { alert(MainForm.UniLabel1.getText()); } Quote
Harry Rogers Posted March 16, 2012 Author Posted March 16, 2012 Thanks for the reply but I can't get it to work. function OnClick(sender, e) { var SomeText = MainForm.UniLabel2.getText() ; MainForm.UniLabel1.setText( SomeText ); } Nothing appears to happen. Thanks Quote
Administrators Farshad Mohajeri Posted March 16, 2012 Administrators Posted March 16, 2012 MainForm.UniLabel1.text Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.