var
button = $find(
"<%= btnToggle.ClientID %>"
);
button.set_selectedToggleStateIndex(0);
This code used to fire the client ToggleStateChanged event, but now it no longer does - and I need it to.
I can work around by calling the event code directly for now, except I won't have the proper eventArgs parameter to pass in.