Hello,
i have a RadGrid :(Html as below)
There are no Insert, Update or delete operations on the grid.
In each row there is a text value in the GridBoundColumn and a combobox inthe template column
The user only action is to select from the comboboxes
The comboboxes are following a certain hierarchy that is done by code. ( Company-->Entity-->Branch-->Department--> .....)
First row in grid is for company and second for entity and third for branch (each row Text + combobox) ......................
Currently everything is displayed in the comboboxes, i want to have the option when choosing a value from entity combobox to filter the branch combobox and department combobox.
also note that the data is not fixed eg: Companies have different hierarchies for example company B has Company-->entity-->Branch-->Department-->Sub department ...
Any help ?
i have a RadGrid :(Html as below)
<
setsRC:SRadGrid
ID
=
"gdvOrgUnitTypes"
runat
=
"server"
AllowFilteringByColumn
=
"false"
GridLines
=
"None"
AutoGenerateColumns
=
"False"
AllowSorting
=
"True"
OnNeedDataSource
=
"gdvOrgUnitTypes_NeedDataSource"
OnItemDataBound
=
"gdvOrgUnitTypes_ItemDataBound"
Width
=
"450"
>
<
MasterTableView
AllowMultiColumnSorting
=
"True"
DataKeyNames
=
"OrganizationUnitTypeID"
CommandItemDisplay
=
"Bottom"
Name
=
"gdvOrgUnitTypes"
>
<
CommandItemSettings
ShowAddNewRecordButton
=
"false"
/>
<
Columns
>
<
setsRC:SGridBoundColumn
DataField
=
"OrganizationUnitTypeName"
HeaderText
=
"Org. Unit Types"
meta:resourcekey
=
"OuTypeName"
HeaderStyle-HorizontalAlign
=
"Left"
/>
<
setsRC:SGridTemplateColumn
ItemStyle-Width
=
"280"
HeaderText
=
"Organization Units"
meta:resourcekey
=
"AvailableOUs"
HeaderStyle-HorizontalAlign
=
"Left"
>
<
ItemTemplate
>
<
setsRC:SRadComboBox
runat
=
"server"
ID
=
"rcbOUsByType"
/>
</
ItemTemplate
>
</
setsRC:SGridTemplateColumn
>
</
MasterTableView
>
</
setsRC:SRadGrid
>
There are no Insert, Update or delete operations on the grid.
In each row there is a text value in the GridBoundColumn and a combobox inthe template column
The user only action is to select from the comboboxes
The comboboxes are following a certain hierarchy that is done by code. ( Company-->Entity-->Branch-->Department--> .....)
First row in grid is for company and second for entity and third for branch (each row Text + combobox) ......................
Currently everything is displayed in the comboboxes, i want to have the option when choosing a value from entity combobox to filter the branch combobox and department combobox.
also note that the data is not fixed eg: Companies have different hierarchies for example company B has Company-->entity-->Branch-->Department-->Sub department ...
Any help ?