Hi,
I have a strange problem when I select a item on a RadComboBox.
The comboBox is populated with data stored on a DB that have accented letters like: "Encuesta de alumnos próximos a graduarse"
If I view all the data binded on the control it shows me correctly, but when I select an item instead of show me the accented letter it show me a strange character like: "Encuesta de alumnos próximos a graduarse".
Any idea what can be the problem??
Note: the data is correctly stored on the DB, my query return me "Encuesta de alumnos próximos a graduarse" the problem only happened when the item is selected on the ComboBox.
Hi,
(1) I had master page using
<
telerik:RadScriptManager ID="RadScriptManager1" runat="server">
</telerik:RadScriptManager>
(2) I also using script manager in Content Page
<
asp:ScriptManagerProxy ID="ScriptManagerProxy1" runat="server">
</asp:ScriptManagerProxy>
But I still getting following error message
Error: Only one instance of a ScriptManager can be added to the page.
Anyone can tell how to solve this problem? Thanks.
Hello:
Inside a DataList ItemTemplate, I have defined a tooltip. The purpose is to display a larger image on mouse over to thumbnail. Here is the code snippet:
| <ItemTemplate> |
| . |
| <asp:Image ID="thumbnail" ImageUrl='<%# Eval("ThumbnailUrl") %>' runat="server" /> |
| <telerik:RadToolTip ID="thumbnailTooltip" runat="server" TargetControlID="thumbnail" relativeTo="Element" Position="MiddleRight"> |
| <asp:Image ID="tooltipImage" ImageUrl='<%# Eval("ThumbnailTooltipUrl") %>' runat="server" /> |
| </telerik:RadToolTip> |
| . |
| </ItemTemplate> |
| <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> |
| <table cellpadding="0" cellspacing="0" style="width: 100%; height: 100%"> |
| <tr> |
| <td valign="top"> |
| <telerik:RadTabStrip ID="RadTabStrip1" runat="server" DataFieldID="IdUrl" DataNavigateUrlField="url" |
| DataSourceID="SqlUrl" DataTextField="TituloPagina" MultiPageID="RadMultiPage1" Height="100%"> |
| <DataBindings> |
| <telerik:RadTabBinding PageViewID="RadPageView1" SelectedIndexField="0" TextField="TituloPagina" Depth="1" /> |
| </DataBindings> |
| </telerik:RadTabStrip> |
| <asp:SqlDataSource ID="SqlUrl" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>" |
| SelectCommand="SELECT TituloPagina, url, activo, IdUrl FROM TabsUrls WHERE (UserId = @UserId)" ProviderName="System.Data.SqlClient"> |
| <SelectParameters> |
| <asp:ControlParameter ControlID="lblUsuario" Name="UserId" |
| PropertyName="Text" Type="String" /> |
| </SelectParameters> |
| </asp:SqlDataSource> |
| <asp:Label |
| ID="lblUsuario" runat="server" Visible="False"></asp:Label></td> |
| </tr> |
| </table> |
| </asp:Content> |