Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
157 views
Hi,

I am wondering if you can provide globalization resourse file RadEditor.Dialogs.resx for Russian and Spanish languages. Standard installation of Telerik does not supply those cultures. Please advise.

Thanks! 
brian
Top achievements
Rank 1
 answered on 10 Nov 2011
2 answers
43 views
Hi all,

I'm having trouble with editor "past as text" functionality. After I click the "submit" button It does not paste any text when browsing with Internet Explorer IE9 (It works with Chrome). Other functionalities seems to work fine.

Any help would be appreciated. Thank you

Telerik.Web.UI.dll

Version
2009.1.527.35
Filipe
Top achievements
Rank 1
 answered on 10 Nov 2011
9 answers
105 views
Hello.  We've been using RadEditor Lite on our WSS 3.0 site for 2 years now.  It's been working great so far.  We're on the latest version (4.5.6).

Few days ago, we noticed that in FireFox 6, editing rich-text fields (and Wiki pages) in SharePoint does not fire up RadEditor any more.  The rich-text content is only editable in HTML code, same as would be the case if RadEditor Lite were not installed at all.  The same rich-text content works fine in Chrome, Safari, and IE, but not on FireFox 6.  Strangely, it works fine in FireFox 5 and lower versions, which but not FireFox 6.

Seeing how rapidly FireFox gets updated nowadays, maybe the problem will go away with the next FF update... But I thought I'd mention this here anyways, and see if there is POSSIBLY a quick fix of any kind.

Thanks!
Taylor
Top achievements
Rank 1
 answered on 10 Nov 2011
15 answers
270 views
In my project, for localization, I need to Rresponse.Redirect the page itself.
Once redirect the page, it will read one given XML file and generate TreeNode dynamicly through the querystring "locale".
But after redirect several times, the whole TreeView cannot be operated no longer although its nodes have displayed in browser.
This problem will occur in IE and Chrome. Firefox and Opera are good.
Plamen
Telerik team
 answered on 10 Nov 2011
1 answer
58 views
Hello,

I have a page with a grid and some labels. On grid item command event (grid is ajax enabled with RadAjaxManager) I want to do some code and then return an alert with the results. The following code works (shows the alert) in IE, Chrome and Opera, but not in Firefox.

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"
    DefaultLoadingPanelID="RadAjaxLoadingPanel1"
    onajaxrequest="RadAjaxManager1_AjaxRequest">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="RadAjaxManager1">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="MyGrid" />
            </UpdatedControls>
        </telerik:AjaxSetting>
        <telerik:AjaxSetting AjaxControlID="MyGrid">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="MyGrid" />
            </UpdatedControls>
        </telerik:AjaxSetting>
        <telerik:AjaxSetting AjaxControlID="MyButton">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="Label1" />
                <telerik:AjaxUpdatedControl ControlID="Label2" />
                <telerik:AjaxUpdatedControl ControlID="Label3" />
                <telerik:AjaxUpdatedControl ControlID="Label4" />
                <telerik:AjaxUpdatedControl ControlID="Label5" />
                <telerik:AjaxUpdatedControl ControlID="Label6" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManager>

protected void MyGrid_ItemCommand(object sender, Telerik.Web.UI.GridCommandEventArgs e)
{
    if(e.CommandName == "MyCommand")
    {
        ScriptManager.RegisterStartupScript(Page, typeof(Page), "alert", "alert('StartupScript');", true); 
        RadAjaxManager1.ResponseScripts.Add("alert('ResponseScripts');");
    }
}

Any ideas?

Thanks in advance.
Marco
Top achievements
Rank 1
 answered on 10 Nov 2011
2 answers
90 views
This is the old sample, it works for me: 
http://demos.telerik.com/aspnet-classic/controls/examples/integration/aspnetajax/autosaveradeditor/defaultCS.aspx
    
Here are my steps
  1. In "Design View", I insert a "Textbox".
  2. Swith to "Preview", click the newly add Textarea, typein "abc".
  3. Swith to "Html" view, I can see my input was taken - it was changed to <INPUT style="WIDTH: 100px; HEIGHT: 22px" value=abc>


I tried same steps for the new sample, but I can not see "value=abc" added:
http://demos.telerik.com/aspnet-ajax/editor/examples/autosave/defaultcs.aspx

Please point to me what I missed (or it is a bug?), thanks for your help!

Stanley
Top achievements
Rank 1
 answered on 10 Nov 2011
1 answer
132 views
Hi,

I'm using a Radgrid in my web project, I'm having issues getting the Radgrid's height to size according to the content.
Basically I wish to have the radgrid take up full height and width of the page.
I need to use vertical and horizontal bars should it overflow and using static headers, as well as the columns to be inline with the header.

My page is within a masterpage and radgrid within an ajaxpanel, I have tried the radgrid within a table setting parent to 100% height & width 100%, as well as the ajaxpanel.

But still no luck at getting the desired outcome.
Any assistance would be greatly appreciated.

Thanks in advance.

(Below code I'm using)


      <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" HorizontalAlign="NotSet" LoadingPanelID="RadAjaxLoadingPanel1" Height="100%">
              
       <telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">
        <script type="text/jscript">
            function myRefreshGrid() {
                var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
                masterTable.rebind();
            }


            function OnClientPageLoad(sender, args) {
                setTimeout(function() {
                    sender.set_status("");
                }, 0);
            }


            function RowDblClick(sender, eventArgs) {
                sender.get_masterTableView().editItem(eventArgs.get_itemIndexHierarchical());
            }


           
        </script>    
       </telerik:RadScriptBlock>

        <telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="odsSiteDetails" GridLines="None" ShowFooter="True" AllowFilteringByColumn="True" AutoGenerateColumns="False" Height="100%" Width="100%">
            <AlternatingItemStyle Wrap="False" /><ItemStyle Wrap="False" />
            <MasterTableView DataKeyNames="ID" DataSourceID="odsSiteDetails" TableLayout="auto" Width="100%">
                <CommandItemSettings ExportToPdfText="Export to Pdf" />
                <RowIndicatorColumn Visible="False"><HeaderStyle Width="40px" /></RowIndicatorColumn>
                <ExpandCollapseColumn><HeaderStyle Width="40px" /></ExpandCollapseColumn>
                <Columns>
                 <telerik:GridButtonColumn CommandName="Select" Text="Edit" UniqueName="cmdSelect"></telerik:GridButtonColumn>
                 <telerik:GridButtonColumn ButtonType="ImageButton" UniqueName="Charts" HeaderText="" CommandName="Charts" ImageUrl="~/Images/chart.png"></telerik:GridButtonColumn>
                 <telerik:GridBoundColumn ShowFilterIcon="True" autopostbackonfilter="True" currentfilterfunction="Contains" datafield="ID" datatype="System.Int32" filtercontrolalttext="Filter ID column" headertext="ID" readonly="True" sortexpression="ID" uniquename="ID" visible="False"></telerik:GridBoundColumn>
                 <telerik:GridBoundColumn ShowFilterIcon="True" autopostbackonfilter="True" currentfilterfunction="Contains" datafield="Description" filtercontrolalttext="Filter Site column" headertext="Site" sortexpression="Site" uniquename="Site"></telerik:GridBoundColumn>
                 <telerik:GridBoundColumn ShowFilterIcon="True" autopostbackonfilter="True" currentfilterfunction="Contains" datafield="Address" filtercontrolalttext="Filter Address column" headertext="Address" sortexpression="Address" uniquename="Address"></telerik:GridBoundColumn>
                 </Columns>
                <EditFormSettings><EditColumn FilterControlAltText="Filter EditCommandColumn column"></EditColumn></EditFormSettings>
            </MasterTableView>
            <GroupingSettings CaseSensitive="False" />
            <ClientSettings>
         <Scrolling AllowScroll="true" UseStaticHeaders="true"></Scrolling>
           </ClientSettings>
            <EditItemStyle Wrap="False" />
            <ActiveItemStyle Wrap="False" />
        </telerik:RadGrid>
       
        
</telerik:RadAjaxPanel>
      <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" Runat="server" Skin="Default">
          
                </telerik:RadAjaxLoadingPanel>
                
    
    <div>
        <telerik:RadWindowManager ID="RadWindowManager1" OnClientPageLoad="OnClientPageLoad" runat="server"></telerik:RadWindowManager>
    </div>
                     
        <asp:ObjectDataSource ID="odsSiteDetails" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="SelectSiteDetails" TypeName="site">
            <SelectParameters>
                <asp:Parameter DefaultValue="-1" Name="ID" Type="Decimal" />
            </SelectParameters>
        </asp:ObjectDataSource>
     
</asp:Content>

Pavlina
Telerik team
 answered on 10 Nov 2011
2 answers
77 views
I have a grid where all items are set to edit mode, when I insert a new item, I want to be able to save that row, as well as other edited rows from  a "Save" command item - but the GridDataInsertItem doesn't seem to be part of the collection of GridItems in the call.

How can I access the inserted item when doing a "Save All?"

Daniel
Top achievements
Rank 1
 answered on 10 Nov 2011
7 answers
97 views
Hi,

I'm using Rad Filter, and when the browser is shrinked,  AND, OR Menu is very inconsistent where it appears. I checked the Rad Filter Demo on Telerik, I don't see the same problem. Also I updated Telerik DLL, but nothing changed.

Thanks,

Nazmi
p.s. I'm attaching an image to show the problem.
Mira
Telerik team
 answered on 10 Nov 2011
1 answer
70 views
I am having a problem with the set_contentUrl method in Safari.  I am using the following:

 

function

GetMultiPageView() {

 

 

 

 

try

{

 

 

 

 

//

 

 

var multiPage = $find("<%=mpWrapper.ClientID %>"

);

 

 

 

 

return

multiPage;

 

}

 

 

catch

(err) {

 

alert(

 

 

"Error encountered: "

+ err.message)

 

}

}



GetMultiPageView().findPageViewByID('pvReportInput').set_contentUrl(Surl);

This works in Internet Explorer and Safari version 4 and 5.0.  Safari 5.1 and up it does nothing.

I have 3 tabs all with their own page view.  I choose to load a PDF into Tab 2.  I have used both sending the PDF through the response header and also by setting the content Url and these options both work.  But in the suspect Safari versions... when I try to click on Tab 1, nothing happens and It just displays the PDF from Tab 2. 

What could be causing this random behavior?
Kate
Telerik team
 answered on 10 Nov 2011
Narrow your results
Selected tags
Tags
+124 more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
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
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?