T
Two
Hi
Does anyone have any idea about how to access a column in a Janus
Control GridEx. I need to change the information in one column of
several selected rows. I can gather all the selected rows with
"CheckedRows", but as I perform a loop through the selection how do I
update the column called "status" in the row.
What I have looks something like this.
GridEXRow[] checkedRows = this.fileGrid.GetCheckedRows();
foreach (GridEXRow row in checkedRows)
{
fileGrid.RootTable.Columns["Status"] =
RecordStatus.CheckedOut;
this.recordBindingSource.ResetBindings(false);
}
the way I tried does not work. Any suggestions?
thanks for the help.
Does anyone have any idea about how to access a column in a Janus
Control GridEx. I need to change the information in one column of
several selected rows. I can gather all the selected rows with
"CheckedRows", but as I perform a loop through the selection how do I
update the column called "status" in the row.
What I have looks something like this.
GridEXRow[] checkedRows = this.fileGrid.GetCheckedRows();
foreach (GridEXRow row in checkedRows)
{
fileGrid.RootTable.Columns["Status"] =
RecordStatus.CheckedOut;
this.recordBindingSource.ResetBindings(false);
}
the way I tried does not work. Any suggestions?
thanks for the help.