hello,
i'm currently doing some experiments with the radgrid control and edit capabilities/options it offers, this is my current situation:
- there's about 30 radgrids on my test page, each one is dynamically and programmatically created, and each one will be editable
- each grid needs to have it's own custom edit form generated from the columns present on the respective radgrid
- the previous version of the website uses standard gridviews and already has all the code behind that creates table rows, columns and controls in a separate "Details" page
- the edit forms need to have combos/dropdowns, datetimepickers, textboxes and so on
- my plan is to use the code behind to programmatically create all the edit forms
now as far as i know my current options are:
- programmatically create a template on the EditCommand event and then "binding" it to the grid
- create a new webusercontrol on the EditCommand event and then add all the controls i want to
are there any other options?
is any of the options i listed possible?
i would appreciate some help on this