Hey folks,
I have a couple of calculated fields from a query on this dashboard where I need to allow editing. I’m customizing the deployed dashboard.
It’s not an updatable dashboard–I’m using these fields to select one or more rows of data and to enter quantities on those I select. I’ll click a button to send this data on to a UD table for further processing.
So, these two columns show to not be read-only on the properties/collection. But the resulting columns are still grayed out.
So I added this:
this.grdResults.DisplayLayout.Bands[0].Columns[“Calculated_SelectLine”].CellActivation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
this.grdResults.DisplayLayout.Bands[0].Columns[“Calculated_SelectQty”].CellActivation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
MessageBox.Show("activation " + this.grdResults.DisplayLayout.Bands[0].Columns[“Calculated_SelectQty”].CellActivation.ToString());
The message box displays in “AllowEdit,” so that looks good, but the columns are still grayed out.
Has anyone needed to do this? Figure it out?
Thanks,
Joe