Hi,
I need to bind a combobox which is present inside the RadGridView, I need to know as how to find the child control inside the RadGridView.
Please find my attached Codings.
How should I find the radcombobox which is present inside the Gridview and bind the list to it??
I need to bind a combobox which is present inside the RadGridView, I need to know as how to find the child control inside the RadGridView.
Please find my attached Codings.
<
telerik:RadGridView.Columns
>
<
telerik:GridViewColumn
Header
=
" "
Width
=
".02*"
UniqueName
=
"Select"
>
<
telerik:GridViewColumn.CellTemplate
>
<
DataTemplate
>
<
CheckBox
Name
=
"chkSelect"
/>
</
DataTemplate
>
</
telerik:GridViewColumn.CellTemplate
>
</
telerik:GridViewColumn
>
<
telerik:GridViewColumn
Header
=
"CategoryWise"
UniqueName
=
"CategoryWise"
Width
=
".4*"
>
<
telerik:GridViewColumn.CellTemplate
>
<
DataTemplate
>
<
telerik:RadComboBox
Name
=
"cboCategoryWise"
IsReadOnly
=
"True"
IsEditable
=
"False"
ItemsSource
=
"{Binding CategoryID}"
></
telerik:RadComboBox
>
</
DataTemplate
>
</
telerik:GridViewColumn.CellTemplate
>
</
telerik:GridViewColumn
>
</
telerik:RadGridView.Columns
>
How should I find the radcombobox which is present inside the Gridview and bind the list to it??