or
Could not determine a MetaTable. A MetaTable could not be determined for the data source 'EntityDataSource1' and one could not be inferred from the request URL. Make sure that the table is mapped to the dats source, or that the data source is configured with a valid context type and table name, or that the request is part of a registered DynamicDataRoute.RadGrid1.EnableDynamicData(typeof(Plan));[MetadataType(typeof(PlanMD))] public partial class Plan { public class PlanMD { [StringLength(50), Required] public string Name { get; set; } } }<dynamic:DynamicRadGrid ID="RadGrid1" runat="server" AllowAutomaticInserts="True" AllowAutomaticUpdates="True" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" AutoGenerateDeleteColumn="True" AutoGenerateEditColumn="True" DataSourceID="EntityDataSource1" GridLines="None"> <MasterTableView AllowAutomaticInserts="False" CommandItemDisplay="Top" DataKeyNames="Id" DataSourceID="EntityDataSource1"> <CommandItemSettings ExportToPdfText="Export to Pdf"></CommandItemSettings> <RowIndicatorColumn> <HeaderStyle Width="20px"></HeaderStyle> </RowIndicatorColumn> <ExpandCollapseColumn> <HeaderStyle Width="20px"></HeaderStyle> </ExpandCollapseColumn> <Columns> <dynamic:DynamicGridBoundColumn DataField="Name" HeaderText="Name" UniqueName="Name"> </dynamic:DynamicGridBoundColumn> </Columns> </MasterTableView> </dynamic:DynamicRadGrid>
<telerik:RadListBox runat="server" ID="listBoxSlideShowActiveItems" SelectionMode="Multiple" EnableDragAndDrop="true" AllowDelete="false" AllowReorder="true" Height="200px" Width="370px" AllowTransferOnDoubleClick="false"> <ItemTemplate> <fieldset> <legend style="font-size:8pt;padding-bottom:2px;">Slide Description</legend> <table border="0" width="100%"> <tr> <td style="width:80px;" valign="top"> <asp:Image ID="imageActiveItemThumbnail" runat="server" CssClass="thumbnailImageSlideShowLarge" ImageUrl="~/SiteImages/spacer.gif" /> </td> <td valign="top"> <table border="0" width="100%"> <tr> <td>Text:</td> <td><asp:TextBox ID="textActiveItemText" runat="server" Width="170"></asp:TextBox></td> </tr> <tr> <td>Href</td> <td><asp:TextBox ID="textActiveItemHref" runat="server" Width="170"></asp:TextBox></td> </tr> <tr> <td>Target:</td> <td> <telerik:RadComboBox ID="comboActiveItemTarget" runat="server" Width="178px"> <Items> <telerik:RadComboBoxItem Text="_blank" Value="_blank" Selected="True" /> <telerik:RadComboBoxItem Text="_parent" Value="_parent" /> <telerik:RadComboBoxItem Text="_search" Value="_search" /> <telerik:RadComboBoxItem Text="_self" Value="_self" /> <telerik:RadComboBoxItem Text="_top" Value="_top" /> </Items> </telerik:RadComboBox> </td> </tr> </table> </td> </tr> </table> </fieldset> </ItemTemplate> <Items></Items> </telerik:RadListBox> <script type="text/javascript"> // RadListBox documented workaround for textbox in item template var radListBoxKeyDown = Telerik.Web.UI.RadListBox.prototype._onKeyDown; Telerik.Web.UI.RadListBox.prototype._onKeyDown = function (e) { if (e.keyCode == Sys.UI.Key.space) { return; } else { radListBoxKeyDown.apply(this, arguments); } } </script>Thanks in advance!
<telerik:RadEditor ID="radEditorDescription" NewLineBr="false" EnableResize="false" runat="server" Width="620px" TabIndex="29" CssClass="maarginleft20 marginBottom20"> <Tools> <telerik:EditorToolGroup Tag="MainToolbar"> <%--<telerik:EditorTool Name="AjaxSpellCheck" />--%> <telerik:EditorTool Name="FindAndReplace" ShortCut="CTRL+F" /> <telerik:EditorTool Name="Undo" ShortCut="CTRL+Z" /> <telerik:EditorTool Name="Redo" ShortCut="CTRL+Y" /> <telerik:EditorTool Name="Indent" /> <telerik:EditorTool Name="Outdent" /> <telerik:EditorTool Name="TableWizard" /> <telerik:EditorTool Name="InsertSymbol" /> <telerik:EditorTool Name="JustifyLeft" /> <telerik:EditorTool Name="JustifyRight" /> <telerik:EditorTool Name="JustifyFull" /> </telerik:EditorToolGroup> <telerik:EditorToolGroup Tag="FileManagers"> <telerik:EditorTool Name="ImageManager" /> </telerik:EditorToolGroup> <telerik:EditorToolGroup> <telerik:EditorTool Name="Bold" /> <telerik:EditorTool Name="Italic" /> <telerik:EditorTool Name="Underline" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="ForeColor" /> <telerik:EditorTool Name="BackColor" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="FontName" /> <telerik:EditorTool Name="RealFontSize" /> </telerik:EditorToolGroup> </Tools> <CssFiles> <telerik:EditorCssFile Value="~/App_Themes/Web20/Editor.css" /> </CssFiles> </telerik:RadEditor> <ajaxToolkit:ModalPopupExtender ID="ModalPopupSwitchUserMenu" runat="server" TargetControlID="linkButtonDesc" PopupControlID="EditorPanel" BackgroundCssClass="watermarked" BehaviorID="SwitchUserMenuPopup" X="200" Y="50" RepositionMode="RepositionOnWindowResize" Drag="true" PopupDragHandleControlID="MyOptionsTitleBar" CancelControlID="ImageButtonClose" OkControlID="ImageButton1" />
