GridEx help needed

  • Thread starter Thread starter Two
  • Start date Start date
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top