Greetings,
I've been trying to something similar as described in this url (http://www.telerik.com/help/aspnet-ajax/grddefaulteditmodeforgriditemsoninitialload.html) but with a different approach.
I've got a Radgrid with an EditForm, which besides textboxes and other controls, has another Radgrid that needs to be in edit mode on load.
The problem is that I can't directly make reference to this lattest Radgrid because of being inside an edit form.
Any thoughts would be appreciated.
Best Regards,
Francisco
I've been trying to something similar as described in this url (http://www.telerik.com/help/aspnet-ajax/grddefaulteditmodeforgriditemsoninitialload.html) but with a different approach.
I've got a Radgrid with an EditForm, which besides textboxes and other controls, has another Radgrid that needs to be in edit mode on load.
The problem is that I can't directly make reference to this lattest Radgrid because of being inside an edit form.
<
telerik:RadGrid
runat
=
"server"
EditMode
=
"EditForms"
>
<
EditFormSettings
EditFormType
=
"Template"
>
<
FormTemplate
>
<
table
>
<
tr
>
<
td
>
<
telerik:RadGrid
runat
=
"server"
>
<
MasterTableView
CommandItemDisplay
=
"Top"
EditMode
=
"InPlace"
>
<
Columns
>
<
telerik:GridBoundColumn
HeaderText
=
"Company"
/>
<
telerik:GridCheckBoxColumn
UniqueName
=
"View"
HeaderText
=
"View"
DataField
=
"View"
/>
<
telerik:GridCheckBoxColumn
UniqueName
=
"Edit"
HeaderText
=
"Edit"
DataField
=
"Edit"
/>
</
Columns
>
</
MasterTableView
>
<
ClientSettings
Selecting-AllowRowSelect
=
"true"
/>
</
telerik:RadGrid
>
</
td
>
</
tr
>
</
table
>
</
FormTemplate
>
</
EditFormSettings
>
</
telerik:RadGrid
>
Any thoughts would be appreciated.
Best Regards,
Francisco