Hello Brock,
When a RadControl client event taken place, it pass two default paramenters, sender(here the combobox) and arguments. I suppose you are trying to pass the same combobox (radcombobox) ID to the function.If so no need not to pass the client ID explicitly as you did. You can atatch the event for aspx itself.
aspx:
Javascript:
If you want to pass extra parameters you cannot pass the extra arguments directly.The easiest way to pass predefined parameters to a function executed on
the clientside, is to assign anonymous function and pass the parameters:
Here is a sample code:
VB:
Javascript:
Hope it helps.
Princy.