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

Grid/Window Editing could not find code for Edit form

1 Answer 32 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Sam
Top achievements
Rank 1
Sam asked on 27 Nov 2013, 01:16 PM
Can someone please look at the demo link below?

http://demos.telerik.com/aspnet-ajax/controls/examples/integration/gridandwindow/defaultvb.aspx?product=grid#qsf-demo-source

When I clicked on Add New Record link button to bring up the Edit form, I could not find the code the show the Edit form (please see attachment for the screenshot)

Thanks,
Sam

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 29 Nov 2013, 03:47 AM
Hi,

The example demonstrates how to use RadWindow for editing RadGrid records. On click of the 'Add New Record', a javascript function ShowInsertForm() is called, which open an aspx page(EditFormvb.aspx) in a new window as insert form. Please check the code below.

Javascript:
function ShowInsertForm() {
        window.radopen("EditFormvb.aspx", "UserListDialog"); // A window is opened with 'EditFormvb.aspx' page, which is shown as a insert form.
        return false;
    
   }

Thanks,
Shinu.
Tags
Grid
Asked by
Sam
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or