Link to home
Start Free TrialLog in
Avatar of faqss
faqssFlag for United States of America

asked on

Doubleclick an element in radiobuttonlist

Hi, is there a serverside way to extend the <asp:RadioButtonList /> control such that it could potentially accept doubleclicks (serverside doubleclicks, not clientside)?
ASKER CERTIFIED SOLUTION
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of faqss

ASKER

Could I manually extend it? All I want to do is on doubleclick, for it to postback. That's all.
>>All I want to do is on doubleclick, for it to postback
Will it then postback twice or once?

What you actually intend to do with your radiobuttonlist's "doubleclick" event?
Avatar of faqss

ASKER

I have a radiobuttonlist with 0,1,2,3 for values representing a rating. Right now they have to click the rating in the radiobuttonlist and then click a submit button.

I want to make it such that they can just double click on the radiobuttonlist value which would recognize a doubleclick event, postback, and execute a handler function that would run some code.
Avatar of faqss

ASKER

(instead of having to tick the value in the radiobuttonlist and then click the submit button, they could just doubleclick the value in the radiobuttonlist. Doubleclicking the radiobuttonlist would tick the value and execute the submit button's function all in one - just for ease of use)