In My Project i want to disable radio button for some conditions, i will done it also...Other Browsers like Firefox or Chrome it will work correctly , but in IE some Design Issue Will Occur...
I don't know How to fix it...please help me to do this
My Code:
Screen Shot:

Code Behind:
public void DisableInprogress()
{
rdpDailyStartDate.Enabled = false;
rdtpDailyStartTime.Enabled = false;
rdtpDailyEndTime.Enabled = false;
rdblSchedule.Enabled = false;
}
Thanks!
Regards!
Arun Prasath.G
Thanks!
Regards!
Arun Prasath.G
SenthilkumarPosted May 15, 2012, 11:33 PM
document.getElementById('rdobtn1').disabled = true;
document.getElementById('rdobtn1').disabled = false;
Hope this will help you.
Jignesh TrivediPosted May 15, 2012, 11:29 PM
your code is correct. I think design issue related to css and html that you use in aspx.
so kindly share which type of design issue you face.
Also you can use java screipt yo disable radio button.
Like..
document.getElementById("Radio1").disabed="disabled";
hope this help.