7 Answers, 1 is accepted
0
Hi Qudsia,
RadScheduler's API allows for such implementation. Please, see the Outlook 2007 demo.
Regards,
Peter
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
RadScheduler's API allows for such implementation. Please, see the Outlook 2007 demo.
Regards,
Peter
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

Qudsia
Top achievements
Rank 1
answered on 15 Jan 2009, 12:44 PM
Peter,
Thanks for your quick reply, well i m talking about Tasks which is below the contacts. There's no Demo of that Task , the link which you have sent me for outlook 2007 that only displayed Calendar and task according to the date, but i m talking about Tasks and their Functionalities which is there in MS Outlook
Regards,
Qudsia
Thanks for your quick reply, well i m talking about Tasks which is below the contacts. There's no Demo of that Task , the link which you have sent me for outlook 2007 that only displayed Calendar and task according to the date, but i m talking about Tasks and their Functionalities which is there in MS Outlook
Regards,
Qudsia
0
RadGrid would be a more suitable control for a MS Outlook to-do list than RadScheduler. I suggest you review some of the online RadGrid demos such as the following:
http://demos.telerik.com/aspnet-ajax/Controls/Examples/Integration/GridAndMenu/DefaultCS.aspx?product=grid
http://demos.telerik.com/aspnet-ajax/Grid/Examples/Programming/WebMailGrid/DefaultCS.aspx
http://demos.telerik.com/aspnet-ajax/Grid/Examples/Client/InsertUpdateDelete/DefaultCS.aspx
Best wishes,
Peter
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

Qudsia
Top achievements
Rank 1
answered on 22 Jan 2009, 09:24 AM
Thanks peter, now i have to ask how to make changes in Edit popup window, I have called popup on the edit of grid and now i wana include extra textBoxes, calendars and comboBox in it, then how would i include them?
I need the same like we do editing on the To-Do List of MS outlook 2007
Please help me out
Regards,
Qudsia
I need the same like we do editing on the To-Do List of MS outlook 2007
Please help me out
Regards,
Qudsia
0

Princy
Top achievements
Rank 2
answered on 22 Jan 2009, 11:15 AM
Hello Qudsia,
You can create a custom FormTemplate by adding the required controls onto the FormTemplate in EditFormSettings of the grid and set the EditMode property of the grid to PopUp as shown below:
aspx:
To learn more about creating custom popup edit forms refer to the following online demo(the second grid in the example suits your requirement).
PopUp edit form
Thanks
Princy.
You can create a custom FormTemplate by adding the required controls onto the FormTemplate in EditFormSettings of the grid and set the EditMode property of the grid to PopUp as shown below:
aspx:
<telerik:RadGrid ID="RadGrid1" DataSourceID="SqlDataSource1" runat="server"> |
<MasterTableView EditMode="PopUp" > |
<Columns> |
<telerik:GridEditCommandColumn></telerik:GridEditCommandColumn> |
<telerik:GridBoundColumn DataField="ProductName" UniqueName="ProductName"> |
</telerik:GridBoundColumn> |
</Columns> |
<EditFormSettings EditFormType="Template"> |
<FormTemplate> |
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox> |
<asp:TextBox ID="TextBox3" runat="server"></asp:TextBox> |
<telerik:RadCalendar ID="RadCalendar1" runat="server" Font-Names="Arial, Verdana, Tahoma" |
ForeColor="Black" Style="border-color: #ececec"> |
</telerik:RadCalendar> |
<telerik:RadComboBox ID="RadComboBox1" runat="server"> |
</telerik:RadComboBox> |
<telerik:RadComboBox ID="RadComboBox2" runat="server"> |
</telerik:RadComboBox> |
</FormTemplate> |
</EditFormSettings> |
</MasterTableView> |
</telerik:RadGrid> |
To learn more about creating custom popup edit forms refer to the following online demo(the second grid in the example suits your requirement).
PopUp edit form
Thanks
Princy.
0

Qudsia
Top achievements
Rank 1
answered on 23 Jan 2009, 07:19 AM
dont reply to this i 've done this
0

Qudsia
Top achievements
Rank 1
answered on 27 Jan 2009, 08:59 AM
Dont reply to my question, i have done this by own.