HI All,
I want to fire the checkbox clicking event in the Comboxbox to check what kind of checkbox has been selected by user. I need to disable controls on the screen based on the user selection. I have search online but find no solution on this. Does ayone has idea how to do this?
Below is my code
Help Please !!
I want to fire the checkbox clicking event in the Comboxbox to check what kind of checkbox has been selected by user. I need to disable controls on the screen based on the user selection. I have search online but find no solution on this. Does ayone has idea how to do this?
Below is my code
<ajax:RadComboBox ID="DdlPoCat" runat="server" Width="280px" EnableLoadOnDemand="True" EnableVirtualScrolling="true" EnableAutomaticLoadOnDemand="true" > <ItemTemplate> <asp:CheckBox runat="server" ID="chkPoCat" Text='<%#Eval("ParamDesc")%>'/> </ItemTemplate> </ajax:RadComboBox>dsPOCategory = getAppParam("PO_CAT") DdlPoCat.DataSource = dsPOCategory DdlPoCat.DataTextField = "ParamDesc" DdlPoCat.DataValueField = "ParamId" DdlPoCat.DataBind()