This is a migrated thread and some comments may be shown as answers.

[Solved] customise auto popup form

2 Answers 85 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Rodney
Top achievements
Rank 1
Rodney asked on 15 Feb 2013, 12:42 PM
ok I have a RadGrid where I have manual created the columns for it and i have a auto generated popup edit/ insert form. one of the field i want to edit is a date and i would like the edit form to have a calender date picker and another is a Yes/No option only so i would like it to be a dropdown instead of just a plan textboxes is there a way to set this without creating a manual edit form.

2 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 15 Feb 2013, 01:10 PM
Hi,

One suggestion is that you can use EditItemTemplate as shown below.
aspx:
<telerik:GridTemplateColumn>
    <EditItemTemplate>
            <telerik:RadDatePicker ID="RadDatePicker1" runat="server"></telerik:RadDatePicker>
            <asp:DropDownList ID="DropDownList1" runat="server"></asp:DropDownList>
    </EditItemTemplate>
</telerik:GridTemplateColumn>

Thanks,
Shinu.
0
Rodney
Top achievements
Rank 1
answered on 15 Feb 2013, 03:35 PM
thank you very much that was the nudge in the right direction that i needed
Tags
Grid
Asked by
Rodney
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Rodney
Top achievements
Rank 1
Share this question
or