List box selection - Client Side
-
Hi, I have button and list box in my page which is having 10 records, When i select any rows from the list box i want to disable the button.. I need to do this from Client side , so what is the event to call the java script fnction. Please reply to my question.. regards, kannak........
kannak
-
Hi, I have button and list box in my page which is having 10 records, When i select any rows from the list box i want to disable the button.. I need to do this from Client side , so what is the event to call the java script fnction. Please reply to my question.. regards, kannak........
kannak
Server controls ou Html controls ?
-
Hi, I have button and list box in my page which is having 10 records, When i select any rows from the list box i want to disable the button.. I need to do this from Client side , so what is the event to call the java script fnction. Please reply to my question.. regards, kannak........
kannak
-
Hi, I have button and list box in my page which is having 10 records, When i select any rows from the list box i want to disable the button.. I need to do this from Client side , so what is the event to call the java script fnction. Please reply to my question.. regards, kannak........
kannak
foreach(ListItem lItems in testListBox.Items)
{
//DisableButtonContol() written in javascript
lItems.Attributes.Add("onclick", "DisableButtonContol();");
}Hope this helps...