Hi,
Here i am using xamgrid to take data from the user.
In that my first coumn should have comboBoxes from which user can select the item. How to place
comboBox within first column cell.
Please give me some suggestions.
also if the user clicks add button means it have to provide new row with again combobox in the first coumn
retaining old row.
Thank You!!!
David,
This is true, the CellValuePresenter is not generated yet. You can only access the values of the record but not the cellvaluepresenter. As I can see from your other post here I think it is best to use the Loaded mode of your editor to perform custom initial logic and RecordUpdated event.
Alex.
You can use SummaryResultChanged event and access the summary results like this:
xamDataPresenter1.FieldLayouts[0].SummaryDefinitions...
I have to get the sum value of third field , in order to check user inputs.
How to access suggest me..
Thank You!!
Hi Alex,
I want to access the summary result in my code to validate the input from the user.
How to access the summary result i.e., sum value in my case.
And also my grid contains multiple rows.
Can u suggest some code.
Thank You!!!!!!!
void XamDataGrid_InitializeRecord(object sender, InitializeRecordEventArgs e)
{
DataRecord dr = e.Record as DataRecord;
dr.IsActive = true;
for (int i = 0; i < dr.FieldLayout.Fields.Count; i++)
Cell cell = dr.Cells[i];
cell.IsActive = true;
Cell cell = m_GridControl.XamDataGrid.ActiveCell;
CellValuePresenter cvp2 = CellValuePresenter.FromCell(cell);
Here, cvp2 is still null. I tried setting the DataRecord to Active and tried setting the Cell to active before calling CellValuePresenter.FromCell method but still no luck. All I want to do here is get back the CellValuePresenter for the current field. Why does CellValuePresenter.FromCell or CellValuePresenter.FromRecordAndField return null? Do you think perhaps it may be due to the Cell not being rendered yet after binding the observable collection to the grid?
Thanks,
David