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

Click on date open red window

3 Answers 50 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
kinshuk
Top achievements
Rank 1
kinshuk asked on 18 Sep 2010, 02:10 PM
In rad calendar i bind data and click on date open rad window
but when i auto postback =true then rad window in not open

3 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 20 Sep 2010, 07:10 AM
Hello Kinshuk,


How are you opening the window? One suggestion is opening the window from code behind, if you need postback on clicking the date. Attach the "SelectionChanged" event and open the window using code similar to given below.

Code:
 RadWindowManager windowManager = new RadWindowManager();  
 RadWindow widnow1 = new RadWindow();  
 // Set the window properties  
 widnow1.NavigateUrl = "Window1.aspx";  
 widnow1.ID = "RadWindow1";  
 widnow1.VisibleOnPageLoad = true; // Set this property to True for showing window from code  
 windowManager.Windows.Add(widnow1);  
 this.form1.Controls.Add(widnow1);



-Shinu.
0
kinshuk
Top achievements
Rank 1
answered on 22 Sep 2010, 08:04 AM
hi shinu thnx 4 reply  but i want to show click date on rad window
0
Tsvetina
Telerik team
answered on 27 Sep 2010, 09:09 AM
Hi,

You can see how you can use RadWindow as a dialog in this help article. By wiring the client-side OnClientShow and OnClientClose events of the control you will be able to pass values between the window and your page.

Best wishes,
Tsvetina
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Calendar
Asked by
kinshuk
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
kinshuk
Top achievements
Rank 1
Tsvetina
Telerik team
Share this question
or