... i binded to in codebehind?
I Have started to get up and running with my small test-projekt for evaluating Telerik ...
I have managed to bind a datattable through NeedDatasource. Like this:
'Set datasource
ProductGrid.DataSource = New Products.Table(Client.ConnectionString)
The tableobject is a custom object wich inherit a Data.DatatTable wich has connection and adapter objects etc. Insert, Update and delete commands are generated and I can save all changes by simply calling
ProductTable.Save()
Nothing fancy about it ... When building WinForm I just bind to my table make some chnages in grid and then call save and voila ... Done!
But can I do this way too when working with RadGrid? Or do I have to retrieve all values and do a manual update?
//h