Working with client-side controls
This topic details concepts about working with the SlickUpload controls in the browser.
Get a client-side reference to a control
To get a client-side reference to a control, call the kw.get function and pass in the ClientID of the control. For example, if you have a SlickUpload control on your page named "slickUpload", you would do:
var slickUpload = kw.get("<%slickUpload.ClientID %>");
|