Reputation: 32490
Is it possible to use the asp.net server controls e.g. grid, repeater etc in conjunction with a webservice? I'm wanting to populate the grid from a webservice datasource and then save changes using a webservice.
Is it possible to use the DeveloperExpress Grid in conjunction with a webservice?
Upvotes: 0
Views: 289
Reputation: 21685
Yes. You can.
You can create a webmethod which returns a datasource for e.g. a generic list containing objects of a serializable class, which can then be bound to the grid/DevExpress grid.
Upvotes: 1