Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
158 views
How can I change the Root PanelBar Text from code behind?

Thanks
Adeel
Top achievements
Rank 1
 answered on 09 Oct 2012
2 answers
220 views
I have a web site that stores documentation.  We use RadEditor to add and update our documents.  I'm in the process of converting all my pages from .NET 1.1  to .NET 4.0

As a result I'm using a newer version of RadEditor.

Our documentation is actually stored as html in a SQL database.

When we display a document, we read the SQL DB into an XML doc and display it.

I have RadEditor working just fine to add new documents.  However, I'm having problems with editing documents.

When I retrieve my data from the SQL database, I'm loading the .InnerXML of my XML doc in the the RadEditor Content field.  RadEditor starts up in Design mode, but the main window is showing all the HTML markup - how can I load my data, so that the main window shows my rendered document, with the HTML markup in the lower window only?

Basically, I need to make this new version of RadEditor function the way my old RadEditor 7.3.5 did.  I've uploaded some files to illustrate my problem. 
Adhelp
Top achievements
Rank 1
 answered on 09 Oct 2012
3 answers
107 views
My RadGrid (Version 2012.2.912.40):

<asp:UpdatePanel ID="InterfacePanel" UpdateMode="Conditional" runat="server">
<ContentTemplate>
 <telerik:RadGrid ID="InterfaceGrid" BackColor="White" Skin="Vista" AutoGenerateColumns="false" AllowSorting="true" runat="server">
    <ClientSettings AllowColumnsReorder="true" ReorderColumnsOnClient="true" ColumnsReorderMethod="Reorder" AllowKeyboardNavigation="True" />
    <MasterTableView HierarchyDefaultExpanded="true" EnableColumnsViewState="false" EditMode="InPlace" BorderColor="#ededed" GridLines="Both" CommandItemDisplay="Top" InsertItemDisplay="Bottom">
 <HeaderStyle HorizontalAlign="Left" />
  <EditFormSettings>
     <EditColumn ButtonType="ImageButton" />
 </EditFormSettings>
    </MasterTableView>
    <ValidationSettings EnableValidation="true" CommandsToValidate="PerformInsert,Update" />
    <ItemStyle Wrap="false" />
    <ActiveItemStyle Wrap="false" />
 </telerik:RadGrid>
</ContentTemplate>
</asp:UpdatePanel>
Kostadin
Telerik team
 answered on 09 Oct 2012
0 answers
66 views
I have a huge project that used RadTabStrips liberally. In many of the pages, but not all, the RadTabStrip unexpectedly resizes to 100% of the browser width. This behavior is not exhibited in IE7 or IE8.

After a cursory look at the CSS for the pages affected, I noticed that there is an entry in the WebResource.axd

.RadTabStrip .rtsLevel {
 
width: 100%; overflow: hidden; padding-top:
1px; clear: both; position: relative;
}


If I disable the width setting in this file (dynamically through the IE developer tools) the RadTabStrip displays properly, fitting the width of the multipage.

I do not set the width of the tabstrip anywhere because the width of the multipage may vary based on the dynamically created content.

The code for the tabstrip is:

<telerik:RadTabStrip ID="RadTabStrip1" runat="server" MultiPageID="RadMultiPage1" SelectedIndex="0">
    <Tabs>
        <telerik:RadTab runat="server" Text="Manage Disciplines" Selected="True">
        </telerik:RadTab>
        <telerik:RadTab runat="server" Text="Discipline Mapping">
        </telerik:RadTab>
    </Tabs>
</telerik:RadTabStrip>



Please advise of a solution to this issue.
Keith
Top achievements
Rank 2
 asked on 09 Oct 2012
4 answers
232 views
Hi,

I am binding a listbox using a SQLDatasource and then adding an item ("All")  to the list on the item databound event.  The problem is that it is adding it in the second position and I need it to be the first item in the list.  Is there a way to add an item at a specific position?

Thanks for your help.

Private Sub rlbCompanyName_ItemDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadListBoxItemEventArgs) Handles rlbCompanyName.ItemDataBound
 
        Dim drv As DataRowView = CType(e.Item.DataItem, DataRowView)
        e.Item.Attributes.Add("CompanyNumber", drv("CompanyNumber").ToString())
        If Me.rlbCompanyName.FindItemByValue("All") Is Nothing Then
            Dim item As New RadListBoxItem("All", "All")
            item.Attributes.Add("CompanyNumber", "00")
            Me.rlbCompanyName.Items.Add(item)
        End If
        If Not Me.rlbCompanyName.FindItemByText("Unknown") Is Nothing Then
            Dim itemToRemove As RadListBoxItem = rlbCompanyName.FindItemByText("Unknown")
            Me.rlbCompanyName.Items.Remove(itemToRemove)
        End If
 
    End Sub
Tracy
Top achievements
Rank 1
 answered on 09 Oct 2012
1 answer
38 views
Hello everyone I have a problem with using a custom skin, when I run the website locally works fine when I transfer it to a production server does not work anymore. If you use telerik skin everything works perfect in the production server.

Michele
Top achievements
Rank 2
 answered on 09 Oct 2012
3 answers
195 views
Is there a way to apply a RadComboBox skin to a regular asp:DropDownList?
I'm using a combination of RadComboBoxes and regular asp:DropDownList controls.  I'm using the Web20 skin for the RadComboBoxes, I want the asp:DropDownList to look the same.

Any advice?

Thanks!
Aarsh
Top achievements
Rank 1
 answered on 09 Oct 2012
1 answer
32 views
HI,

http://www.telerik.com/support/kb/aspnet-ajax/editor/using-the-image-and-document-managers-outside-radeditor.aspx

in this link have Image Manager Customazation Code.

I have change trail version dll replace to License Dlls. then  Customzation Image manager is not display .  Its Showing normal image manager.

is there any dll version problem

please help me any body.
Vessy
Telerik team
 answered on 09 Oct 2012
7 answers
130 views
Hi everyone,

I have this scenario: A web page with 7 RadGrids and all of them are related with each other.
It is possible when I select one row on the first RadGrid, this RadGrid shows only the row selected?

This procedure will help me to reduce the space used on the screen and at the same time shows only the relevant information to the user.

Thanks any help.

Marcio Nascimento
Tsvetina
Telerik team
 answered on 09 Oct 2012
1 answer
57 views
Hi All,

I am facing one issue with RadCombobox. (V 2009.1.527.20).

Is it the known issue?

Details: 

Properties set:  AllowCustomText = True , EnableTextSelection = True and MarkFirstMatch = True

When the first letter typed matches an available text in the dropdown, the text is populated.
(Image 1 is attached)

The problem is that when you continue typing, even if the next characters match the first or another entry, the characters are appended to the front of the populated title making the entry entirely unintended and preventing freeform entry.  Normal expected behavior would be for the automatically suggested selection to go away and accept the user entered characters if the remaining entries do not match. 

(Please check image 2)
Nencho
Telerik team
 answered on 09 Oct 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?