Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
147 views
Hello,

I am having DNN module which use RadSplitter. The module working correct in the DNN 7.1.
But when I have updated DNN to 7.2, the splitter stopped to work in the Internet Explorer (tested in the version 9, 10, 11).

The JS console display error.

Please see attached file.

I have tested also in the FireFox, the splitter works but console also display the same errror
Vessy
Telerik team
 answered on 11 Mar 2014
1 answer
116 views
Hi
how can i improve the performance of my radgrid?
Princy
Top achievements
Rank 2
 answered on 11 Mar 2014
7 answers
573 views
Hello,

I have this problem where image is not shown. In web config I have all those stuff inserted (listed below). Version of ddl files I have are 2009.3.1103.35. I need to mention that at the beginning this worked, but for some reason not anymore. I am not sure what could be changed and make this not working any longer. Hope you will respond ASAP.

  <location path="Telerik.Web.UI.WebResource.axd">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>

      <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" />

AND

      <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 verb="*" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" validate="false" />

Slav
Telerik team
 answered on 11 Mar 2014
1 answer
158 views
HI,
In the telerik 2013 Q3 i have problem with RadDateTimePicker "showTimePopup()" client side function.
In my code it looks like this:
 
<telerik:RadDateTimePicker ID="rdtVisitDate" runat="server" TimePopupButton-Visible="false"
AutoPostBackControl="TimeView" OnSelectedDateChanged="rdtVisitDate_SelectedDateChanged"
TabIndex="1" AutoPostBack="True" Width="170px" Height="22px">
<ClientEvents OnPopupClosing="OnDateSelected" OnPopupOpening="SetPageClientValidate" />...
 
 
function OnDateSelected(sender, args) {
            sender.showTimePopup();
        }
 
 
In chrome the error is: "Uncaught RangeError: Maximum call stack size exceeded"
 
in IE10: "SCRIPT28: Out of stack space - Telerik.Web.UI.WebResource.axd, line 9673 character 7"
 
--
Best Regard
Shinu
Top achievements
Rank 2
 answered on 11 Mar 2014
5 answers
120 views
Hi,

We've started using more telerik controllers in our produkt but in the latest addition we've run into a problem. We get a undefined error loading a page using the autocompletebox.

See attachment.
Helen
Telerik team
 answered on 11 Mar 2014
6 answers
541 views
Hello :)

Sure it's pretty simple, but how can I put the footer (pages moves buttons, page size and number of item) in my grid foot when there is no record instead of my present grid.



The result I would like :



Thank you
Julie
Maria Ilieva
Telerik team
 answered on 11 Mar 2014
12 answers
338 views
hi .

i have a complected scenario , i am building a user control With a content template rad window , and there is a another user control inside the content template ,
 so the issue is that  when updating  the user control inside rad window by ajax request ,but  the loading panel appear while updating the inner user control if i removed the rad window and left the inner user control .

note : i am Rendering the inner user control to Div Element .

 Server Side Code :
 
Private Sub ParentPageAjaxManagerHandling()
       Dim ParentPageAjaxManager As RadAjaxManager = RadAjaxManager.GetCurrent(Page)
        
       ParentPageAjaxManager.AjaxSettings.AddAjaxSetting(ParentPageAjaxManager, Me.EditCountryRegionWebUserControl)
       
AddHandler ParentPageAjaxManager.AjaxRequest, AddressOf ParentPageAjaxManager_AjaxRequest
 
   End Sub
 
   Private Sub ParentPageAjaxManager_AjaxRequest(ByVal sender As Object, ByVal e As Telerik.Web.UI.AjaxRequestEventArgs)
       
If e.Argument.Contains("LoadCountryRegionByID_") Then
 
           Dim NewIDString As String = e.Argument.Replace("LoadCountryRegionByID_", "")
           Me.EditCountryRegionWebUserControl.
           LoadCountryRegionByID(If(NewIDString <> "" And NewIDString <> "null" And NewIDString <> "undefined",
                                    Guid.Parse(NewIDString), Guid.Empty))
 
       ElseIf e.Argument = "DeleteSelectedItem_In_" + Me.CountryRegionsListRadGrid.MasterTableView.ClientID Then
 
           DeleteSelectedCountryRegion()
       End If
   End Sub



Html :


<telerik:RadButton ID="NewCountryRegionRadButton" runat="server" AutoPostBack="False" Text="" OnClientClicked="NewCountryRegionRadButton_Clicked"

<
telerik:RadWindow ID="AddOrEditCountryRegionRadWindow" runat="server" Behavior="Close, Move, Reload" Behaviors="Close, Move, Reload" KeepInScreenBounds="True" ReloadOnShow="True" Height="135px"  Width="600px" VisibleStatusbar="False" Modal="True" DestroyOnClose="True" ShowContentDuringLoad="False">
     
    <ContentTemplate>
     
        <table style="width: 100%;">
            <tr>
                <td colspan="2">
                    <uc1:CountryRegionWebUserControl runat="server" ID="EditCountryRegionWebUserControl" />
                </td>
                 
            </tr>
            <tr>
                <td style="width: 45px"></td>
                <td>
                    <asp:Label ID="EditCountryRegionWindowErrorLabel" runat="server" ForeColor="Red"></asp:Label>
                </td>
                 
            </tr>
            <tr>
                <td></td>
                <td>
                    <telerik:RadButton ID="EditCountryRegionWindowOkRadButton" runat="server" Text="موافق">
                    </telerik:RadButton>
                    <telerik:RadButton ID="EditCountryRegionWindowCancelRadButton" runat="server" AutoPostBack="False" CausesValidation="False" OnClientClicked="EditCountryRegionWindowCancelRadButton_Clicked" Text="">
                    </telerik:RadButton>
                </td>
                 
            </tr>
        </table>
         
    </ContentTemplate>
     
</telerik:RadWindow>

javascript :
function NewCountryRegionRadButton_Clicked(sender, args) {
          
   var AddCountryWindow = $find("<%= AddOrEditCountryRegionRadWindow.ClientID %>");
          
          $find("<%= RadAjaxManager.GetCurrent(Page).ClientID %>").
         ajaxRequest("LoadCountryRegionByID_" + "<%= Guid.Empty %>");
          
          
         AddCountryWindow.show();
     }

Maria Ilieva
Telerik team
 answered on 11 Mar 2014
1 answer
68 views
Hi All,
I am getting some issues with asp.net page rendering. I am getting problems at multiple places in grid, in normal labels and etc.

I bind my rad grid with a string list as data source. My rad grid contains remove button with each row.
I remove one of row from string list and rebind it with rad grid which runs fine, the row get removed.

But second time if i again remove another row from string list and again rebind it with rad grid, it will not remove row from grid. In debugging if I try to find row count, it is one less after removing but after page loads the grid has same count of rows as it was before removing.

And this problem goes when I log in with user having administrative role(i.e. host log in). 


Same is the case for label text update. The call goes once but after that it does not render page at all.

Please help
Maria Ilieva
Telerik team
 answered on 11 Mar 2014
1 answer
192 views
Hello

Сopy project folder in IIS 7.5. But when I run, not one script does not work.

for example

protected void ShowWindowS()
    {
        string script = "function f(){$find(\"" + rdWindowSup.ClientID + "\").show(); Sys.Application.remove_load(f);}Sys.Application.add_load(f);";
        ScriptManager.RegisterStartupScript(Page, Page.GetType(), "key", script, true);
    }

protected void rdButtonRN_Click(object sender, EventArgs e)
    {
        ShowWindowS();
    } 


Run in Visual Studio 2012  all works.

I do not know what to do.


what settings you need to do to work scripts? IIS 7.5

















Marin Bratanov
Telerik team
 answered on 11 Mar 2014
1 answer
86 views
I am trying to export data from inner and outer grid while using virtualitemcount.

Outer data is exported successfully but it causing problem for inner grid

Please suggest on this.
Angel Petrov
Telerik team
 answered on 11 Mar 2014
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?