Hi I am not creating the columns client side at all.
I was actually wanting to reuse the object that I got back from the server. In other words I wanted to update the values in the case of an edit and send back the object with the updated values. It seems as if I will have to build the oject client side first - I was trying to find away around it. So on the client I get back a DataTable var _dt = res.value; if I then update the values by _dt.Rows[0].FieldA = 1; _dt.Rows[0].FieldB = "foo"; _dt.Rows[0].FieldC = "bar"; Then I call a server side method that accepts a DataTable as an input parameter passing it _dt. This seems to be wheer the problem comes in. I will building the DataTable and Row client side first. Cheers --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ajax.NET Professional" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/ajaxpro The latest downloads of Ajax.NET Professional can be found at http://www.ajaxpro.info -~----------~----~----~----~------~----~------~--~---
