Hi,
I've got a very simple Toolbar. It has one buttonGroup with three buttons that all belong to the same group. When the Toolbar initially loads, none of the buttons in the group are selected (toggled on). The user clicks one and all is good.
But, then I have another process on my page that requires me to reset the buttonGroup back to it's original state. That is, none of the buttons in the Group are selected (toggled on).
Is this possible?
The only solution I have seen codes like this, but this only removes the class. The "state" of the buttons is unchanged.
$('#ActionsButtons>a.k-selected').removeClass('k-selected');
Thanks for any help,
John