Team,
I am using telerik combobox containing check box in it.
(referred URL: http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/checkboxes/defaultcs.aspx )
I have a following requirement in my application
1.Change “Check All” label to “Select All”
2.I want to check if all items are checked using “Check All” option on client side because I have notice that OnClientItemChecked
Event Is not get triggered when all items are checked using “Check All” option is there alternate way for this?
3. Whenever I select items using checkbox all checked item get displayed in combo text with comma separator but the time when focus lost from the combobox only first selected item get display in combo text. It is working proper in a demo. Can you please let me know what can be the cause of this behavior?
Thanks in advance
cn.NavigateUrl = "Secure/" & row("NavigateURL").ToString()


Sample: GridView grdPropertyType = (GridView)RadPanelBar1.FindItemByValue("propertyType").FindControl("grdPropertyType");grdPropertyType .DataSource=data;(I have count of 10 values)grdPropertyType.DataBind(); --------------- and I am using the following code to bind the data:protected void grdPropertyType_DataBound(object sender,GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { Label lblPropertyTypeName = (Label)e.Row.FindControl("lblPropertyTypeData"); Label lblPropertyTypeCount = (Label)e.Row.FindControl("lblPropertyTypeCountData"); PropertyListView rowData = (PropertyListView)e.Row.DataItem; lblPropertyTypeName.Text = rowData.PropertyTypeDesc; lblPropertyTypeCount.Text = rowData.PropertyTypeCount.ToString(); } } -----------------------Is my code wrong? My problem is,I am unable to see grid view in the rad panel bar.Can you people help me on that???? Thanks and Regards Rama.M