or
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
|
Line 13: {
Line 14:
Line 15: Session["skinid"] = ((RadSkinManager)RadMenu1.FindControl("RadSkinManager1")).Skin;
Line 16: }
| <%@ Page Language="csharp" AutoEventWireup="true" MasterPageFile="./MasterPage.master" %> |
| <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
| <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"> |
| <asp:ScriptManager ID="ScriptManager1" runat="server"> |
| </asp:ScriptManager> |
| <script runat=server language=csharp> |
| public void OnPreRender(object sender, System.EventArgs args) |
| { |
| int last = RadFormDecorator1.Controls.Count -1; |
| RadFormDecorator1.Controls[last].ID = RadFormDecorator1.ID + "_hiddenInputsStyle"; |
| } |
| </script> |
| <telerik:RadFormDecorator OnPreRender="OnPreRender" ID="RadFormDecorator1" runat="server" /> |
| <telerik:RadComboBox ID="cmbLeerling" runat="server" AutoPostBack="True" CausesValidation="False" |
| Skin="Outlook" Width="200px" AllowCustomText="True" MarkFirstMatch="True"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </telerik:RadComboBox> |
| </asp:Content> |
Hi,
Whenusing the RADScheduler I would like to add the user information in the subject sectionof the Inline Edit and the detail window as default.
Forexample when I login as a user and I am trying to set up an appointment Ishould be able to see my Name in the subject box as default.
Thanks
Sabrish
| <telerik:RadGrid ID="grdTopics" runat="server" AutoGenerateColumns="False" GridLines="None" AllowPaging="false" AllowSorting="false" ShowFooter="false" ShowHeader="true" > |
| <ClientSettings AllowExpandCollapse="true"></ClientSettings> |
| <MasterTableView Name="Topics" EditMode="InPlace" DataKeyNames="ID" HierarchyLoadMode="Client" NoMasterRecordsText="There are no Topics." NoDetailRecordsText="There are no Topics."> |
| <RowIndicatorColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </RowIndicatorColumn> |
| <ExpandCollapseColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </ExpandCollapseColumn> |
| <Columns> |
| <telerik:GridTemplateColumn HeaderText="Moderators" UniqueName="Moderators"> |
| <ItemTemplate> |
| <asp:Label ID="lblTopics_View_Moderators" runat="server"></asp:Label> |
| </ItemTemplate> |
| <EditItemTemplate> |
| <telerik:RadListBox ID="lstTopics_Edit_Moderators" runat="server" CheckBoxes="true" DataKeyField="ID" DataTextField="Name" ></telerik:RadListBox> |
| </EditItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridTemplateColumn HeaderText="" UniqueName="Edit Topic"> |
| <ItemTemplate> |
| <asp:ImageButton ID="btnTopics_View_EditTopic" runat="server" ImageUrl="~/DesktopModules/BAOffice/images/edit.gif" AlternateText="Edit Topic" CommandName="TOPICS_EDIT" CausesValidation="false" /> |
| </ItemTemplate> |
| <EditItemTemplate> |
| <asp:ImageButton ID="btnTopics_Edit_SaveTopic" runat="server" ImageUrl="~/DesktopModules/BAOffice/images/save.gif" AlternateText="Save Topic" CommandName="TOPICS_SAVE" CausesValidation="false" /> |
| </EditItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridTemplateColumn HeaderText="" UniqueName="Delete Topic"> |
| <ItemTemplate> |
| <asp:ImageButton ID="btnTopics_View_DeleteTopic" runat="server" ImageUrl="~/DesktopModules/BAOffice/images/delete.gif" AlternateText="Delete Topic" CommandName="TOPICS_DELETE" CausesValidation="false" OnClientClick="return ConfirmDelete();"/> |
| </ItemTemplate> |
| <EditItemTemplate> |
| <asp:ImageButton ID="btnTopics_Edit_CancelTopic" runat="server" ImageUrl="~/DesktopModules/BAOffice/images/cancel.gif" AlternateText="Cancel" CommandName="TOPICS_CANCEL" CausesValidation="false" /> |
| </EditItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridTemplateColumn HeaderText="" UniqueName="Move Topic Up"> |
| <ItemTemplate> |
| <asp:ImageButton ID="btnTopics_View_MoveUp" runat="server" ImageUrl="~/DesktopModules/BAOffice/images/action_up.gif" AlternateText="Move Topic Up" CommandName="TOPICS_MOVEUP" CausesValidation="false" /> |
| </ItemTemplate> |
| <EditItemTemplate> |
| <asp:Image ID="imgTopics_Edit_MoveUpSpacer" runat="server" ImageUrl="~/DesktopModules/BAOffice/images/spacer.gif" /> |
| </EditItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridTemplateColumn HeaderText="" UniqueName="Move Topic Down"> |
| <ItemTemplate> |
| <asp:ImageButton ID="btnTopics_View_MoveDown" runat="server" ImageUrl="~/DesktopModules/BAOffice/images/action_down.gif" AlternateText="Move Topic Down" CommandName="TOPICS_MOVEDOWN" CausesValidation="false" /> |
| </ItemTemplate> |
| <EditItemTemplate> |
| <asp:Image ID="imgTopics_Edit_MoveDownSpacer" runat="server" ImageUrl="~/DesktopModules/BAOffice/images/spacer.gif" /> |
| </EditItemTemplate> |
| </telerik:GridTemplateColumn> |
| </Columns> |
| </MasterTableView> |
| </telerik:RadGrid> |