Hi,
I have couple of radio buttons on the screen (Lets say 4)
1. Weekly
2. Monthly
3. Yearly
4. Periodic
In the above list if i name the group as “group1”. Using this can i get which radio button is clicked and what is the value of it. lets say if i click monthly the value should be monthly.. like that!
At present i am using If /Else statement. this looks bit lengthy code.
I saw jqxValidator.. but nor exactly i was looking in that example. There
checked = $(“#btn1”).jqxRadioButton(‘checked’) || $(“#btn2”).jqxRadioButton(‘checked’) || $(“#btn3”).jqxRadioButton(‘checked’) ||
return checked;
is used.. this is good.. but how do i know which btn is clicked?