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

How do I render a textbox in each day of the calendar

3 Answers 180 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Marshall Moorman
Top achievements
Rank 1
Marshall Moorman asked on 10 Dec 2009, 10:36 PM
I am trying to render a textbox for each day of a calendar, but I am getting an exception.

Page cannot be null. Please ensure that this operation is being performed in the context of an ASP.NET request.

Can someone tell me how to accomplish this?

<telerik:RadCalendar ID="calendar" Width="500px" Height="400px" runat="server" OnDayRender="calendar_DayRender">  
            <CalendarDayTemplates> 
                <telerik:DayTemplate ID="templateMinutes">  
                    <Content> 
                        <telerik:RadTextBox ID="txtMinutes" runat="server" Columns="5">  
                        </telerik:RadTextBox> 
                    </Content> 
                </telerik:DayTemplate> 
            </CalendarDayTemplates> 
        </telerik:RadCalendar> 

3 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 11 Dec 2009, 07:32 AM
Hello Marshall,

Try adding the textbox in DayRender event and see whether it meets your requirement. Here is the code that I tried.

CS:
 
    protected void calendar_DayRender(object sender, Telerik.Web.UI.Calendar.DayRenderEventArgs e) 
    { 
        TextBox text = new TextBox(); 
        text.Text = e.Day.Date.ToString();
        e.Cell.Controls.Add(text); 
    } 

Thanks,
Princy.
0
Marshall Moorman
Top achievements
Rank 1
answered on 11 Dec 2009, 01:27 PM
That works, but I am wanting to use a RadTextBox instead of just an ASP TextBox.
0
Mira
Telerik team
answered on 16 Dec 2009, 10:26 AM
Hi Marshall,

 
To implement the desired by you functionality, I suggest that you add the RadTextBox to a Day Template and use it for all dates.

Give this suggestion a go and let me know how it goes.


Greetings,
Mira
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Calendar
Asked by
Marshall Moorman
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Marshall Moorman
Top achievements
Rank 1
Mira
Telerik team
Share this question
or