This question is locked. New answers and comments are not allowed.
Hi there
I had some troubles with my RadGrid updated bound to my OA DataSource.
The solution is quite easy but still I had some time to find it thats why I share it here - I hope it helps others.
The DataField of the grid is case sensitve when it comes to inserts and updates with OA.
The Problem is that it is not case sensitive to dispalay data so you might not catch the reason so soon.
Lets say I have a field uPassword in my DB. OA can make a UPassword out of it!
So you might use this code to display data in a grid.
This will actually work and display the Password. It does not matter to the grid if you use DataField="uPassword" or DataField="UPassword"
But unless you have it right case sensitive wise
The inserts and updates will fail. Telling you that there is no uPassword!
Hope this helps
Markus
I had some troubles with my RadGrid updated bound to my OA DataSource.
The solution is quite easy but still I had some time to find it thats why I share it here - I hope it helps others.
The DataField of the grid is case sensitve when it comes to inserts and updates with OA.
The Problem is that it is not case sensitive to dispalay data so you might not catch the reason so soon.
Lets say I have a field uPassword in my DB. OA can make a UPassword out of it!
So you might use this code to display data in a grid.
<telerik:GridBoundColumn DataField="uPassword" HeaderText="Password" UniqueName="uPassword" > </telerik:GridBoundColumn>This will actually work and display the Password. It does not matter to the grid if you use DataField="uPassword" or DataField="UPassword"
But unless you have it right case sensitive wise
<telerik:GridBoundColumn DataField="UPassword" HeaderText="Password" UniqueName="uPassword" > </telerik:GridBoundColumn>The inserts and updates will fail. Telling you that there is no uPassword!
Hope this helps
Markus