| <telerik:RadComboBox ID="RadComboBox1" Runat="server" |
| DataSourceID="SituacaoAlunosDatasource" |
| DataTextField="sts_titulo" |
| DataValueField="sts_id" |
| LoadingMessage="Carregando..." AppendDataBoundItems="true" |
| SelectedValue='<%# Bind("eixxxx_sts_statusaluno") %>' > |
| </telerik:RadComboBox> |
Hiya,
Vs2008
Q2 2009 SP1
I have a dynamicData project.
When I was using an old radMenu, the project worked fine.
Now, with the new radMenu, I get an error.
Old rad menu:
| oldRadMenu.DataSource = visibleTables; |
| oldRadMenu.DataBind(); |
NEW radMenu:
| q2RadMenu.DataSource = visibleTables; |
| q2RadMenu.DataBind(); //Error: |
| //Object of type System.Web.DynamicData.MetaTable does not have a TableName property. |
So, I have proved that the new menu errors when it is given the exact same dataSource as an old radMenu.
The aspx is the same for both:
| <telerik:RadMenu ID="q2RadMenu" runat="server" DataTextField="TableName"> |
| </telerik:RadMenu> |
| <radM:RadMenu ID="oldRadMenu" runat="server" DataTextField="TableName"> |
| </radM:RadMenu> |
Please specify:
1) why the new menu breaks
2) What I need to do to fix it.
I previously took the time to ask Telerik whether radMenu would work as-is with Dynamic Data, and was informed that it would.
Thanks,
yogi
<?
xml version="1.0" encoding="utf-8" ?>
<
root>
-
<modules>
<
module name="RadEditorStatistics" dockingZone="Bottom" enabled="true" visible="true" />
<
module name="RadEditorDomInspector" dockingZone="Module" enabled="false" visible="false" />
<
module name="RadEditorNodeInspector" dockingZone="Module" enabled="false" visible="false" />
<
module name="RadEditorHtmlInspector" dockingZone="Module" enabled="false" visible="false" />
</
modules>
<
tools>
<
tool name="FindAndReplace" />
<
tool name="Undo" />
<
tool name="Redo" />
<
tool name="Cut" />
<
tool name="Copy" />
<
tool name="Paste" shortcut="CTRL+!"/>
<
tool name="InsertOrderedList" />
<
tool name="InsertUnorderedList" />
<
tool name="FormatStripper" />
<
tool name="PasteFromWordNoFontsNoSizes" />
< tool separator="true"/>
<
tool separator="true"/>
<
tool name="FormatBlock" />
<
tool name="Bold" />
</
tools>
<
paragraphs>
<
paragraph name="Clear formatting" value="<body>" />
<
paragraph name="<H3>Heading 3</H3>" value="<H3>" />
</
paragraphs>
<
contextMenus>
<
contextMenu forElement="IMG" enabled="true">
<
tool name="Paste" />
<
tool name="pastePlainText" />
</
contextMenu>
</
contextMenus>
</
root>
All I want if for my users to past plain text or paste only. Any thoughts would be appreciated.
mac