Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
124 views
Can someone point me to a reference on how to get the buttons into the editor using a tools.xml file? I need the names for some specific buttons. I remember seeing the list once but can't find it again on this site.

Thanks!
Dobromir
Telerik team
 answered on 25 Jun 2010
3 answers
205 views
Hi,

I am a new user to RadControls so pardon my ignorance.

What we essentially want is that:
  1. A user is shown the contents in the editor
  2. He should not be allowed to change it.
  3. He should be allowed to print the contents of the editor.

If I switch to preview mode, the buttons gets disabled. I there a way I can achieve the above?

Regards,
Vaibhav
Dobromir
Telerik team
 answered on 25 Jun 2010
6 answers
345 views

My grid has a Delete GridButtonColumn, defined as follows...

<telerik:GridButtonColumn CommandName="Delete"   
    ConfirmText="Are you sure you want to delete the selected item?" Text="Delete"   
    UniqueName="Delete">  
</telerik:GridButtonColumn> 

I get the Cofirmation Text, and I delete the row server-side with this...

Protected Sub RadGridPO_DeleteCommand(ByVal source As ObjectByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGridPO.DeleteCommand  
    Dim item As GridEditableItem = CType(e.Item, GridEditableItem)  
    Dim strKey As String = item.OwnerTableView.DataKeyValues(e.Item.ItemIndex).Item("PODetailKey").ToString  
    Dim changedRow As DataRow() = POGridData.Select("PODetailKey = " & strKey)  
    If changedRow.Length <> 0 Then 
        changedRow(0).Delete()  
    End If 
End Sub 

But I need to call a javascript function afterwards. I tried using OnRowDeleted in the RadGrid's ClientSettings, but it doesn't work...

<ClientSettings> 
    <Selecting AllowRowSelect="True" /> 
    <ClientEvents OnRowSelected="RowSelected" OnRowDeleted="RowDeleted" /> 
</ClientSettings> 

(Though it doesn't give me an error either.) How can I call a javascript function after the row is deleted?
Jeremy Yoder
Top achievements
Rank 1
 answered on 25 Jun 2010
1 answer
52 views
Hi

I downloaded latest trial version for POC purpose, I am evaluating Pie chart features which we are looking for. But I could not see any Series property for the Chart. I could see those on your Demo section.

Is there anything I am missing? Please note that I am using Express Edition VS.

Thanks,
Pradip
Ves
Telerik team
 answered on 25 Jun 2010
3 answers
88 views

Hello,

In Internet Explorer 8 (not a problem with FireFox 3.6.3), when inputting various TextBox fields and then clicking a "Next >>" Button, if clicking on the browser's back button, the textbox's input is cleared.  I've been taking the page apart and finally traced it to the RadFormDecorator, specifically the "Fieldset".

So, when including ControlsToSkip="Fieldset" then on back button the state remains, but otherwise it's cleared.
Here's the working example, but I lose the decoration of the fieldset:

   <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server"   
      DecoratedControls="All" ControlsToSkip="Fieldset" Skin="Office2007" /> 
   <fieldset> 
      <legend>Information</legend> 
      <telerik:RadTextBox ID="RadTextBox1" runat="server" /> 
   </fieldset> 
   <asp:Button ID="Button1" runat="server" Text="Next >>" OnClick="Button1_Click" /> 

Any idea's why...?  Does a solution exist..?
Thank you in advance,
Ronnie
Ronnie
Top achievements
Rank 1
 answered on 25 Jun 2010
1 answer
53 views
Hello, when I open Image manager , or file manager/ flash manager from Rad Editor , I can not "grab" the window and move it to where I want it , the cursor "jumps" of the window and when I release the window "jumps" back

here is a link to a video which shows the problem: Movie
Dobromir
Telerik team
 answered on 25 Jun 2010
2 answers
120 views
Here is my problem,

I have a toolbar at the top of my page and a radSplitter bellow it. The splitter consist of two radPane that will contain something. I want to make the splitter occupy 100 % of the remaning space on the page, because the toolbar occupy some height and if I collasped the bottom pane, the splitbar goes outside the page (so I can't set the height to 100%).

Here is a sample code :
<div style="height:100%"
       <telerik:RadToolBar ID="RadToolBar1" runat="server" Width="100%"
            <Items> 
                <telerik:RadToolBarButton runat="server" Text="Précédent"
                </telerik:RadToolBarButton> 
                <telerik:RadToolBarButton runat="server" Text="Suivant"
                </telerik:RadToolBarButton> 
            </Items> 
        </telerik:RadToolBar> 
        <telerik:RadSplitter ID="RadSplitter1" Runat="server" Orientation="Horizontal" Height="100%" Width="100%"
        <telerik:RadPane ID="RadPane1" Runat="server" Height="50%"
            <p>Pane 1</p> 
        </telerik:RadPane> 
        <telerik:RadSplitBar ID="RadSplitBar1" Runat="server" CollapseMode="Backward"
        </telerik:RadSplitBar> 
        <telerik:RadPane ID="RadPane2" Runat="server" Height="50%" Collapsed="True"
            <p>Pane 2</p> 
        </telerik:RadPane> 
        </telerik:RadSplitter> 
    </div> 

Thanks
Sébastien
Top achievements
Rank 1
 answered on 25 Jun 2010
1 answer
141 views
I have a tabstrip that is associated with a MultiPageView. The tabs are created clientside from an XML data file that includes the associated PageViewID.

The tabs are all created correctly but the XML also indicates which tab is to be selected. The set_selected (true) method of this tab is called once the tabstrip has been completed and triggers an event handler associated with the OnClientTabSelected event. The selected tab is highlighted correctly but the PageView shown is always the one associated with the first tab.

If you subsequently click on other tabs everything works OK and the corresponding pageview is shown so the tabs have been setup correctly. It is only following the initial setup that the correct pageview is not shown.

Do you have any suggestions as to what I might be doing wrong?

Bob Boffin

Using Telerik.Web.UI version 2008.3.1314.35
Bob Boffin
Top achievements
Rank 2
 answered on 25 Jun 2010
3 answers
356 views
Hi,

I am getting the above error when trying to run my application. I have AJAX Control Toolkit 3.5 April 2010 Release and RadControls for ASP.NET AJAX Q1 2010 NET3.5 installed. I am using a RadScriptManager in my MasterPage as shown below:

<body> 
    <form id="form1" runat="server">  
        <div style="text-align: center; padding-top: 5px;">  
          
            <telerik:RadScriptManager ID="RadScriptManager1" runat="server"/>  
            <telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server"/> 

My web.config has the following sections:
<pages> 
            <controls> 
                <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>  
                <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>  
            </controls> 
        </pages> 
<httpHandlers> 
            <remove verb="*" path="*.asmx"/>  
            <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>  
            <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>  
            <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/>  
            <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false"/>  
        </httpHandlers> 
<httpModules> 
            <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>  
        </httpModules> 

The only solution I have found is to replace the RadScriptManager with the ToolkitScriptManager, but I then get the following error:

"Microsoft JScript runtime error: Sys.InvalidOperationException: Two components with the same id 'ctl00_ContentPlaceHolder2_RadMultiPage1' can't be added to the application."

There is only one control named RadMultiPage1 in the application.

Hope someone can help.
Pavlina
Telerik team
 answered on 25 Jun 2010
2 answers
110 views
Howdy!

So my customer just came across a rather interesting issue. Using the code snippet button, if they click on the edge of the icon, see attached screenshot028, the editor pastes in the last used code snippet. It will also paste it in if we click the code snippet icon on the left of the button. If we click the little black triangle, attached screenshot029, it gives us the menu. I was able to recreate this on the Telerik's website.

Any chance we can set the entire button to show the menu regardless?

Thanks,
Delphi
Top achievements
Rank 1
 answered on 25 Jun 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?