I have bind \"checked\" and \"click\" event on a radio button list. But whenever a radio button is clicked, the selection does not stay. I must be doing something really wrong.
Basically, your click handler won't end up catching that you want to retain the value.
What is happening is that it is going back to default after you select an item.
return true;
As the only code in your handler.
handler