I am trying to set a cell's value in a GridDataBoundGrid. Here is what I am doing, but its not working.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
rowIndex = currentCell.RowIndex
colIndex = currentCell.ColIndex + 1
Me.GridDataBoundGrid_PtPayments(rowIndex, colIndex).CellValue = "20"
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
The grid and all its cells are already bound to a datatable. Is that causing a problem in changing its data? However there is no data in the cell when I am trying to change it.
I did try the BeginUpdate() and EndUpdate() methods before making changes to the CellValue, in the same method.
Thanks in advance
Jots
AD
Administrator
Syncfusion Team
November 11, 2002 07:57 PM UTC
Are you using the 1.5 release?
JY
jyotsna
November 12, 2002 11:33 AM UTC
> Are you using the 1.5 release?
Yes I am using ver 1.5.
JY
jyotsna
November 12, 2002 11:46 AM UTC
> > Are you using the 1.5 release?
>
Oops I realised what I was doing wrong.