I have 2 columns:
1. GridClientSelectColumn with a unique name of cCheckBox
2. GridTemplateColumn with a dropdown list in it, with a unique name of cDropDownList
If the DropDownList for a row changes value I need to automatically put a check in the checkbox of the same row.
So far I did the following:
for my ddl I added the following properties:
OnSelectedIndexChanged="ddlRegistryStatus_SelectedIndexChanged" AutoPostBack="True
in my code behind:
I created a sub:
Protected Sub ddlRegistryStatus_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs)
End Sub
I don't know what to do from here. It would also be nice if I could Ajaxify this whole thing.
1. GridClientSelectColumn with a unique name of cCheckBox
2. GridTemplateColumn with a dropdown list in it, with a unique name of cDropDownList
If the DropDownList for a row changes value I need to automatically put a check in the checkbox of the same row.
So far I did the following:
for my ddl I added the following properties:
OnSelectedIndexChanged="ddlRegistryStatus_SelectedIndexChanged" AutoPostBack="True
in my code behind:
I created a sub:
Protected Sub ddlRegistryStatus_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs)
End Sub
I don't know what to do from here. It would also be nice if I could Ajaxify this whole thing.