Hello,
We got a following scenario:
One sfdatagrid got multiple columns. Two are dependency one of another one.
I need change a first column and generate a new datasource (on second column) with value select on the first.
DgPartidas.Columns.Add(new GridComboBoxColumn() {
MappingName = "IdActuacion",
HeaderText = "Actuacion",
ValueMember = "IdActuacion",
DisplayMember = "Actuacion",
DropDownStyle = DropDownStyle.DropDown,
DataSource = actuaciones,
});
DgPartidas.Columns.Add(new GridComboBoxColumn()
{
MappingName = "IdFase",
HeaderText = "Fase",
ValueMember = "IdFase",
DisplayMember = "Fase",
DropDownStyle = DropDownStyle.DropDown,
DataSource = fases,
});
how can i do this??
Thanks