Hello,
How can we get the value of UltraGrid row wise?
or
How can we get the value of Ultragrid cell wise?
Please help me in solving the issue..
Waiting for your reply !!!!
Could you please let me know what do you mean by " value of the UltraGrid Row"? If you want to get the underlying object from the UltraGrid row than you could use the following :
ultraGrid1.DisplayLayout.Rows[Index].ListObject
About the cells values you could get it through the .Cells[Index].Value like:
ultraGrid1.DisplayLayout.Rows[Index].Cells["Column Name"].Value
Please let me know if you have any further questions.
But I want to provide values to specific column of ultra grid
It isn't clear what you are asking here since the columns themselves don't store values. Individual cells within a row do store values and you can set them in a few different ways:
If you are asking something else, please provide more details about your request.
Thanks sir, now i want to deselect the first row of ultragrid when bind with the database
By default the first row is activated (not selected) because the grid syncs with the ActiveRow with the current position of the BindingManager. There are more details on this in the Clearing selected and/or active row... thread.