Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
Max 21
Angualr Top questions

Details



What is Client Script? Client scripts are shipped to the client (the browser) and run there instead of on the server. Users who know JavaScript can define scripts to run in the client browser. Several types of scripts are supported. onLoad(): Runs when a form is loaded. onChange(): Runs when a particular widget changes value. submit(): Runs when a form is submitted. Note: Best practice for performance reasons is to limit the amount of code sent to the client. You should always be aware of the impact on the client when adding client scripts. onCellEdit(): Runs when a cell on a list changes value.
Related Topics