The following conventions are used when accessing the client object properties:
• Server properties on the client are implemented as a pair of Get- and Set- methods.
• Method names must start with "get_" (Get-method) and "set_" (Set-method) followed with the server property name. The first letter of the server property name must be lowercase (camel case).
The following example sets C1NavigationList's displayVisible property to False:
var navListNew = $find("<%= NavigationList1.ClientID %>");
navListNew.set_displayVisible(false);
The following example gets the value of C1NavigationList's displayValue property:
var navListNew = $find("<%= NavigationList1.ClientID %>");
navListNew.get_displayVisible();