Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
109 views
Hi All,

I am using RadControl Q22009,

I am using rad editor.

When i export the radeditor  content its formatting get lost.
I have align some content to right side of radeditor.
But while exporting to pdf it show the data in left side.
How can i fix the formatting issue.
How can the exported pdf should show the same format as type in radeditor?

I have attached the screen shot for reference.

Thanks,


Rumen
Telerik team
 answered on 04 Nov 2009
1 answer
101 views
I have set the radgrid to use custom skin how I am unable to set the style so it looks similar to the attached image. Could some please show me how to do this. I have copy the default template and rename it to mycustomskin template.
Dimo
Telerik team
 answered on 04 Nov 2009
4 answers
174 views
Hi,

How to display the Date in the header of Scheduler in theTime Line view? (Date to be displayed as in the Day view of the scheduler)Right now I am getting only the time period and not the date.

Thanks

Sabarish

sabarishbabu
Top achievements
Rank 1
 answered on 04 Nov 2009
2 answers
375 views
Good day,

Is it possible to put RadComboBox inside Command Item Template of RadGrid. If possible, can you show me how I can bind it to datasource kind of string array

Thank you for your effort answer men
Z.Rusev

Zlatko Rusev
Top achievements
Rank 1
 answered on 04 Nov 2009
1 answer
163 views
I am using a Rad Menu inside of a user control.  When I set the NavigateURL property on the RadMenuITeam to "../../Desktop/ClaimHistory/CHSearch.aspx" the control will change the path to "../../Common/Desktop/ClaimHistory/CHSearch.aspx" during render.  I am setting the  menu's items on the server.

The user control that the Menu sits in is Common folder but all of the target pages on all of the menu items are not.  What can do to prevent the Menu from inserting the common folder into the Navigate URL?
Atanas Korchev
Telerik team
 answered on 04 Nov 2009
1 answer
139 views
I'm facing some strange behaviour with Radeditor in WSS 3.0.

Current testing environment:
- RadEditor MOSS 5.5.1 trial
- copied Italian resource files in App_GlobalResources
- browser is IE8
- NewLineBr set to false in ListConfigFile.xml

Here are some features I'm experimenting inconsistent behaviour with:

1. If I activate FormatBlock tool (via ListToolsFile.xml), I keep getting style names in English; anyway, if I position the cursor within some text with specific paragraph settings (for example, "Heading 1"), the paragraph style combobox display the corresponding item translated (in italian). Actually, I suspect this is a browser related problem, because I get this very same behaviour with your demo available online.

2. I'd like to replace all the available standard styles with fewer ones, giving them some internal names, yet using standard tags for them; for example, a style named "Main section" should apply html tag <h2>, while another named "Subsection" should apply tag <h3>. So I modified ListToolsFile.xml according to documentation, and I actually can get my custom items in paragraph styles listbox, and can successfully apply these styles as needed. Anyway, when cursor is within text which was assigned custom style "Main section" (ie, tag <h2>), I get the original style name in the listbox, "Titolo 2", or "heading 2" when using an english version of the browser. The same happens for text within <h3> tags, which shows "titolo 3" or "Heading 3" insted of my custom style "Subsection".

3. If the last paragraph has a custom style, and I need to add more text after it, I can't get an easy way to reset style. For example, if the last existing paragraph has been applied style "Formatted", then as I add more text after it I keep getting it withing the closing <pre> tag. I have to switch to HTML panel and move desired text outside the <pre> tags. This behaviour too can be easily reproduced in the online demo.

Are these notes correct or I've missed needed configuration steps?
If true, are there any workarounds for these behaviours?

TIA
Stanimir
Telerik team
 answered on 04 Nov 2009
1 answer
116 views
Hello,

Upon mousehouver of any appointment tool tip is displyed by default as "Subject"  , i want to remove this default tooltip, how can i do?

This means that ... When i mosue houver any appoint ment , The "Subject" as a defualt tool tip, i want to Remove / Hide this default  tool tip , how can i do? Please help me out?

REgards
Samir
Peter
Telerik team
 answered on 04 Nov 2009
1 answer
197 views

I have a panelbar with usercontrols loading in it. see code below,



<Telerik:RadPanelBar ID="RadPanelBar2" runat="server" PersistStateInCookie="true" Height="500" Width="100%" > 
 
</Telerik:RadPanelBar> 

Protected
 Sub Page_Load(ByVal sender As ObjectByVal e As System.EventArgs) Handles Me.Load  
RadPanelBar2.ExpandMode = PanelBarExpandMode.FullExpandedItem  
RadPanelBar2.DataFieldID = ""  
RadPanelBar2.DataFieldParentID = "ID1"  
RadPanelBar2.DataTextField = "Name"  
RadPanelBar2.DataValueField = "Text"  
RadPanelBar2.DataSource = MyDS  
RadPanelBar2.DataBind()  
If Not Page.IsPostBack Then  
    RadPanelBar2.Items(0).Expanded = True
    RadPanelBar2.Items(0).Selected = True    
End If 
If Not RadPanelBar2.SelectedItem Is Nothing Then 
    LoadUsercontrol(RadPanelBar2.SelectedItem.Text) 
End If 
End Sub 
 
Private Sub RadPanelBar2_ItemDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadPanelBarEventArgs) Handles RadPanelBar2.ItemDataBound
Dim newPanelItem As New RadPanelItem
e.Item.Items.Add(newPanelItem)
End Sub

Protected Sub LoadUsercontrol(ByVal selectedItem As String
 
    Dim pItem As RadPanelItem = DirectCast(RadPanelBar2.FindItemByText(selectedItem), RadPanelItem) 
 
    Dim smControl As SomeControl  
    smControl = CType(LoadControl("MyControls/SomeControl.ascx"), SomeControl)  
    smControl.MyID = pItem.Value 
    pItem.Controls.Add(smControl) 
End Sub


Problem: In the User control I have a hierarchy grid. The code above is inside content page. When I click rows (hierarchy) in the grid the panel item is expanding, but the radpanel is hiding in content page.

Even if I reduce the height to 400px no use.

How to fix this?
Paul
Telerik team
 answered on 04 Nov 2009
1 answer
102 views

Hello,

I face an issue and suspect it is related to nested controls but can't achieve to find out how to solve it;

I have a multiple nest of splitters/pane in a masterpage:

<telerik:RadSplitter ID="MainSplitter" runat="server" Height="100%" Width="100%" Orientation="Horizontal" Skin="Office2007" > 
  <telerik:RadPane ID="TopPane" runat="server" Height="64" Scrolling="none" Locked="true">  
    <!-- Zone : En-tête --> 
    <div class="header"></div> 
  </telerik:RadPane> 
  <telerik:RadSplitBar ID="RadsplitbarTop" runat="server" CollapseMode="Forward" Visible="true" /> 
    <telerik:RadPane ID="MainPane" runat="server" Scrolling="None" EnableEmbeddedBaseStylesheet="False" EnableEmbeddedSkins="True" Index="2" Skin="Office2007">  
      <telerik:RadSplitter ID="NestedSplitter" runat="server" Skin="Office2007" LiveResize="true">    
        <telerik:RadPane ID="LeftPane" runat="server" Width="200" MinWidth="150" MaxWidth="400">    
          <!-- Zone : Menu --> 
          <asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" ShowStartingNode="False" /> 
          <telerik:RadTreeView ID="RadTreeView1" Runat="server" Skin="Vista">  
          </telerik:RadTreeView> 
          <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionStri...></asp:SqlDataSource> 
      </telerik:RadPane>    
      <telerik:RadSplitBar ID="VerticalSplitBar" runat="server" CollapseMode="Forward" /> 
        <telerik:RadPane ID="RightPane" runat="server" Scrolling="None">    
          <!-- Zone : Childs --> 
          <telerik:RadSplitter ID="NestedSplitter2" runat="server" Skin="Office2007" Orientation="Horizontal">  
            <telerik:RadPane ID="DescriptionPane" runat="server" Height="96" MinHeight="96" MaxHeight="96" Scrolling="none" Locked="false">  
              <fieldset style="width:500px; margin-left:auto; margin-right:auto; margin-top:8px; padding: 8px;">  
                <legend style="font-weight:bold; padding-bottom:8px;">  
                  <asp:ContentPlaceHolder ID="DescriptionTitle" runat="server"></asp:ContentPlaceHolder> 
                </legend> 
                <table> 
                  <tr> 
                    <td style="width: 40px; text-align: center;">  
                      <asp:ContentPlaceHolder ID="DescriptionIcon" runat="server"></asp:ContentPlaceHolder> 
                    </td> 
                    <td style="text-align: left;">  
                      <asp:ContentPlaceHolder ID="DescriptionBody" runat="server"></asp:ContentPlaceHolder> 
                    </td> 
                  </tr> 
                </table> 
              </fieldset> 
            </telerik:RadPane> 
            <telerik:RadSplitBar ID="Radsplitbar1" runat="server" CollapseMode="Forward" />    
            <telerik:RadPane ID="ContentPane" runat="server" Scrolling="Y" Locked="false">  
              <asp:ContentPlaceHolder ID="Main" runat="server">  
              </asp:ContentPlaceHolder> 
            </telerik:RadPane> 
          </telerik:RadSplitter> 
        </telerik:RadPane>    
      </telerik:RadSplitter>    
    </telerik:RadPane>    
  </telerik:RadSplitter>   

But trying to mimic the Wizard TabStrip Application Scenario I face an "Object Reference not set" error on the line
Dim PlanningTab As RadTab = tabStrip.FindTabByText("Project Planning"

of the script below:
Imports Telerik.Web.UI  
 
Partial Class Local_NewProject_Description  
  Inherits System.Web.UI.UserControl  
 
  ...  
  Private Sub GoToNextTab()  
    Dim tabStrip As RadTabStrip = Page.FindControl("RadTabStrip1")  
    Dim PlanningTab As RadTab = tabStrip.FindTabByText("Project Planning")  
    PlanningTab.Enabled = True 
... 

of the code behind of an ascx used in this aspx page:
<%@ Page Title="" Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="newproject.aspx.vb" Inherits="Local_newproject" %> 
 
<asp:Content... .../asp:Content> 
<asp:Content ID="Content4" ContentPlaceHolderID="Main" Runat="Server">  
  <telerik:RadTabStrip ID="RadTabStrip1" runat="server">  
  </telerik:RadTabStrip> 
  <telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0">  
  </telerik:RadMultiPage> 
</asp:Content> 

Can somebody explain how I can reach the Tab subset and the TabStrip control of this page?
Thank you in advance,
David
Paul
Telerik team
 answered on 04 Nov 2009
1 answer
281 views
Hi Telerik Guys !

I have been using RAD FILE EXPLORER in my project so for & is working fine until I got an major task to perform. This task includes :--

I have to show two ROOTS within same/one RAD FILE EXPLORER with restricting the CONTEXT MENU options on to one of the ROOT , while to show some of the CONTEXT MENU option on to the other ROOT.

For example :-- Lets say I have two ROOTS 

    i.e. ----+ FTP MANAGEMENT

         ----+ SHARED DOCUMENTS  

Now what I want is to perform two operations from the FTP MANAGEMENT ROOT
(a.) DELETE FOLDER :- Delete folders for the FTP MANAGEMENT ROOT
(b.) MOVE FILES :- Move file for FTP MANAGEMENT to SHARED DOCUMENT

While, I do not want to perform any operations from the SHARED DOCUMENTS ROOT.

Please suggest whether I have to restrict the CONTEXT MENU for the SHARED DOCUMENT ROOT or someting else to do ?

Please help !!

Iam attaching the screen-shot of the two scenario so for , please acknowledge them.


Please help help how to proceed ?

Ajay Jamwal
 
Fiko
Telerik team
 answered on 04 Nov 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?