<
telerik:RadAjaxLoadingPanel
ID
=
"RadAjaxLoadingPanel1"
runat
=
"server"
Height
=
"75px"
<br> Width="75px"><
br
> <
div
id
=
"loadingOverlay"
style
=
"text-align:left;"
><
br
> <
div
id
=
"loadingBox"
><
br
> <
table
id
=
"tblRoundedHeader"
runat
=
"server"
class
=
"RoundedHeader"
style
=
"width:100%;"
><
br
> <
tr
><
br
> <
td
class
=
"Header2Left"
></
td
><
br
> <
td
class
=
"Header2Middle"
>Covertix</
td
><
br
> <
td
class
=
"Header2Right"
></
td
><
br
> </
tr
><
br
> </
table
><
br
><
br
> <
div
class
=
"frame-left"
><
br
> <
div
class
=
"frame-right"
><
br
> <
div
style
=
"margin-left: 11px; margin-right: 11px; background-color: white; height:80px"
> <
br
> <
div
id
=
"Image1"
class
=
"LoadingImg"
></
div
><
br
> <
p
style
=
"margin-left: 55px;"
>Loading...</
p
><
br
> </
div
><
br
><
br
> </
div
><
br
> </
div
><
br
> <
div
class
=
"bottom-left"
></
div
><
br
> <
div
class
=
"bottom"
></
div
><
br
> <
div
class
=
"bottom-right"
></
div
><
br
> </
div
><
br
> </
div
><
br
> </
telerik:RadAjaxLoadingPanel
>
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