I have a EZI_QPanel named P1_Emp which contains an EZI_TextBox named P1_ADDRESS1. Does somebody know the syntax to retrieve the value of P1_ADDRESS1 in a .js file:
this.q_getProperty("Form.???????.P1_ADDRESS1.Value");
Thanks by advance
Yann
Using EZI panel items in JavaScript
-
tsupartono
- Posts: 289
- Joined: Wed Apr 18, 2012 10:21 am
Re: Using EZI panel items in JavaScript
One way to figure this out is using the server logging.
If you enable the server (system) logging, you would be able to see all the properties that the server sends to the client.
Look for lines starting with "UnloadEachNameValuePair"
For example, this line tells me the name of one of the properties in the quick panel:
-->|UnLoadEachNameValuePair is sending|.FORM.FIELDS.QPANEL1.FIELDS.MC.FIELDS.T10.VALUE|wqA=|<-- 0
If you enable the server (system) logging, you would be able to see all the properties that the server sends to the client.
Look for lines starting with "UnloadEachNameValuePair"
For example, this line tells me the name of one of the properties in the quick panel:
-->|UnLoadEachNameValuePair is sending|.FORM.FIELDS.QPANEL1.FIELDS.MC.FIELDS.T10.VALUE|wqA=|<-- 0