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

Radwindow shutdowns automatically

1 Answer 44 Views
Window
This is a migrated thread and some comments may be shown as answers.
MANsour
Top achievements
Rank 1
MANsour asked on 17 Jun 2013, 08:20 AM
Hi,
I have a page that uses a MasterPage.
The MasterPage has a RadWindow with a ContentTemplate. And in the ContentTemplate I have a RadGrid with filter ability.
When I enter a value in filter text box, the Radwindow shutdowns automatically.
How can I handle this problem?

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 17 Jun 2013, 09:19 AM
Hi,

To show the RadWindow  either you can set RadWindow's 'VisibleOnPageLoad' as true directly or try that in ItemCommand to achieve that in filtering only.

C#:
protected void RadGrid1_ItemCommand(object sender, GridCommandEventArgs e)
 {
    if (e.CommandName == "Filter")
    {
       RadWindow1.VisibleOnPageLoad = true;
    }
}

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