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

RadGrid and Popup

1 Answer 54 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Harun
Top achievements
Rank 1
Harun asked on 22 Sep 2012, 11:07 AM
Hi,
Please Help me?

I have two tables.  Ogrenci(OgrId,OgrName,OgrSurname) and OgrenciTranskript(Id,DersA,DersB,OgrID)
Information will appear in the first table of the grid as a student.  Clicking a row in the grid will appear in the popup, the information in the second table.

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 24 Sep 2012, 06:49 AM
Hi,

One suggestion is that you can open a radwindow in OnRowClick event as shown below.
aspx:
<ClientEvents OnRowClick="ShowWindow"/>
JS:
  function ShowWindow()
 {
    window.radopen("Transkript.aspx", "RadWindow2");
}

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