Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
53 views
 
Solved

Ebenezer
Top achievements
Rank 1
 asked on 18 Oct 2013
4 answers
84 views
I have an issue setting isSelectionRangeEnabled on the client-side 

I have a dropdownlist and a slider,  When the ddl has a value of 3 I want to make sure selection range is turned on.

function operatorChanged() {
    var slider = $find('<%= slideNewRating.ClientID %>');
    var ddlOperators = document.getElementById("<%=ddlOperators.ClientID%>");
    var value = ddlOperators.options[ddlOperators.selectedIndex].value;
    if (value == 3) {
        slider.set_isSelectionRangeEnabled(true);
        slider.set_selectionStart = 1;
        slider.set_selectionEnd = 3;
    }
    else
        slider.set_isSelectionRangeEnabled(false);
                 
}

This works fine on my page.  The slider instantly changes from a single value selection to a range.

My problem is after postback and trying to obtain the slider range values to use in C# to send them to the database.
I can move the 2 sliders all over track but on posting and setting breakpoint in my code i find; The isSelectionRangeEnabled value shows as true, but SelectionEnd and SelectionStart values are always 0 and the Value property is equal to what the SelectionStart value should be.

Even when I explicitly set the selection range like in my code above this occurs.  Its like the control gets half set into different selection modes from the client-side.

Thoughts?
Jason
Top achievements
Rank 2
 answered on 18 Oct 2013
0 answers
74 views
This issue is fixed in Q1 2013 SP1.

In Q3 2013 the clicking of RadButton is not raised when Enter key is pressed inside a password TextBox and the RadButton is set to be the default button for the form (Link to feedback portal).

The issue will be fixed for the upcoming Q3 2013 SP1. For the time being the following workaround can be used:

This is a common setup that will cause the problem described above:
<form id="form1" runat="server" defaultbutton="RadButton1">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
    <asp:TextBox runat="server" ID="TextBox1" TextMode="Password" />
    <telerik:RadButton runat="server" ID="RadButton1" Text="Submit" />
</form>
This function override should be placed at the end of the page to fix the issues:
<script type="text/javascript">
    Telerik.Web.UI.RadButton.prototype._isInputTypeText = function (element) {
        var nodeName = element.nodeName,
        type = element.type;
        if (nodeName != "INPUT" || !type) return false;
        return type == "text" || type == "password" || type == "email" || type == "number" || type == "url" || type == "search" || type == "tel";
    }
</script>
Telerik Admin
Top achievements
Rank 1
Iron
 asked on 18 Oct 2013
1 answer
74 views

Dear Telerik Team,

Column resizing in radgrid don't work appropriately.
In this demo 
http://demos.telerik.com/aspnet-ajax/grid/examples/client/resizing/defaultcs.aspx I can't resize a column more than once so the arrow (<-->) don't show after the first resize

Thanks in advance.

Tarek


Venelin
Telerik team
 answered on 18 Oct 2013
1 answer
93 views
Hi,

I have a very weird error. Im getting 404 resource not found whenever I'm using AJAX in my page. When I comment this out, I don't encounter it.

My page has a user control which is as follows:
<div id="divMakeApptCustInfo" class="box" style="border: 0" runat="server">
   <asp:UpdatePanel ID="updPnlMakeApptCustInfo" runat="server" UpdateMode="Conditional">
    <ContentTemplate>
         <table style="margin-left:20px" runat="server">
                <tr class="datarow">
                    <td class="label-reschedule" style="padding-bottom: 20px;">
                        <asp:Label ID="Label12" runat="server" Text="ID Number"></asp:Label>
                         <span class="sign">*</span>
                    </td>
                    
                    <td style="padding-bottom: 20px;">
                       
                        <asp:TextBox runat="server" ID="txtIdNo" Width="250px" OnTextChanged="txtIdNo_OnChange" AutoPostBack="true"></asp:TextBox>
                      </td>
                </tr>
                 <tr class="datarow">
                    <td class="label-reschedule">
                        <asp:Label ID="Label15" runat="server" Text="Name"></asp:Label>
                        <span class="sign">*</span>
                    </td>
                    <td style="padding-bottom: 20px;">
                        <asp:TextBox runat="server" ID="txtCustomerName" MaxLength="66" Width="250px"></asp:TextBox>
                     
                    </td>
                </tr>
                <tr class="datarow">
                   <td class="label-reschedule">Enter Verification Code <span class="sign">* </span> </td>
                   <td id="liCapchaUC" style="padding-top: 3px;">
                        <asp:UpdatePanel ID="updPnlCaptchaUC" runat="server" UpdateMode="Conditional">
                              <ContentTemplate>
                                <telerik:RadCaptcha ID="rdcaptcha" CaptchaAudioLinkButtonText=""
                                    runat="server" ValidationGroup="submitGroupMakeAppt" InvisibleTextBoxLabel="true" EnableRefreshImage="true" ValidatedTextBoxID="txtCaptchaUC"
                                    CaptchaLinkButtonText="" Display="Dynamic" ProtectionMode="Captcha" Height="100px">
                                    <CaptchaImage Width="280" Height="50" EnableCaptchaAudio="true" ImageCssClass="imgcss"
                                        RenderImageOnly="True" TextColor="black" BackgroundNoise="None" LineNoise="None" FontWarp="None" />
                                </telerik:RadCaptcha>
                                </ContentTemplate>
                        </asp:UpdatePanel>
                        <asp:TextBox ID="txtCaptchaUC" runat="server" ToolTip="Please enter the upper code" tabindex="2"
                            MaxLength="5" AutoComplete="off" CssClass="rcTextBoxClass"></asp:TextBox>
                    </td>
                </tr>
            </table>
   </ContentTemplate>
</asp:UpdatePanel>
  
    </div>



My requirements is to populate the customer name based on the entered Id's ontextchange event. Everything is ok on the first page_load. The page has a Continue button and when I click Continue, I proceed to the next page. On the next page, there's a back button. When I click the back button, then enter the Id again, I get the resource not found error. I have also tried using telerik: RadAjaxManagerProxy instead of asp:UpdatePanels, as shown below:
<telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server" >
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="txtIdNo">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="txtCustomerName"/>
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="txtCustomerName">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="txtCustomerName"/>
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManagerProxy>

but i'm also encountering the same error. Please advise why this is happening. Any help is greatly appreciated! In my back button, I'm just calling Server.Transfer to my main page.


Thanks!
Konstantin Dikov
Telerik team
 answered on 18 Oct 2013
3 answers
102 views
Hello

I would like to add a ajax manager like this sample and it's doesn't work ? do you know why ?

http://www.telerik.com/help/aspnet-ajax/listview-datapager-for-paging.html


<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
                   <AjaxSettings>
                       <telerik:AjaxSetting AjaxControlID="RLV_BIEN">
                           <UpdatedControls>
                               <telerik:AjaxUpdatedControl ControlID="RLV_BIEN" LoadingPanelID="RadAjaxLoadingPanel1" />
                           </UpdatedControls>
                       </telerik:AjaxSetting>
                   </AjaxSettings>
               </telerik:RadAjaxManager>
               <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" MinDisplayTime="0" Skin="Metro"/>
 
 
 
               <!-- debut du listview-->                      
               <telerik:RadListView ID="RLV_BIEN" runat="server" ItemPlaceholderID="EmployeesContainer" DataSourceID="WbAffaires" OnItemDataBound="RLV_BIEN_Affaires_ItemDataBound"
                   AllowPaging="True" AllowSorting="true" DataKeyNames="bi_id">
                   <LayoutTemplate>
                       <fieldset style="width:635px;" id="RLV_BIEN">
                           <legend></legend>
                           <telerik:RadDataPager ID="RadDataPager1" PagedControlID="RLV_BIEN" runat="server" CssClass="RadDataPager" PageSize="10">
                               <Fields>
                                   <telerik:RadDataPagerPageSizeField  PageSizeText="Biens par page" PageSizes="10,20,30"/>
                                   <telerik:RadDataPagerButtonField FieldType="FirstPrev" FirstButtonText="First" PrevButtonText="Prev" />
                                   <telerik:RadDataPagerButtonField FieldType="Numeric" PageButtonCount="5"></telerik:RadDataPagerButtonField>
                                                                        
                                   <telerik:RadDataPagerButtonField FieldType="NextLast" NextButtonText="Next" LastButtonText="Last" />
                                    
                                   <telerik:RadDataPagerTemplatePageField>
                                        <PagerTemplate>
                                           <asp:DropDownList runat="server" ID="DDL_TRI" OnSelectedIndexChanged="DDL_TRI_SelectedIndexChanged" AutoPostBack="true" CssClass="DDL_LIST_BIEN">
                                               <asp:ListItem Text="Choisir votre tri" Value="" Selected="true"></asp:ListItem>
                                               <asp:ListItem Text="Prix ascendant" Value="prixasc" ></asp:ListItem>
                                               <asp:ListItem Text="Prix descendant" Value="prixdesc"></asp:ListItem>
                                               <asp:ListItem Text="Date plus recent" Value="dateasc"></asp:ListItem>
                                               <asp:ListItem Text="Date moins recent" Value="datedesc"></asp:ListItem>
                                               <asp:ListItem Text="Surface ascendant" Value="surfaceasc"></asp:ListItem>
                                               <asp:ListItem Text="Surface descendant" Value="surfacedesc"></asp:ListItem>
                                               <asp:ListItem Text="Nb pièce ascendant" Value="pieceasc"></asp:ListItem>
                                               <asp:ListItem Text="Nb pièce descendant" Value="piecedesc"></asp:ListItem>
                                               <asp:ListItem Text="Nature du bien" Value="naturebien"></asp:ListItem>
                                           </asp:DropDownList>
                                        </PagerTemplate>
                                   </telerik:RadDataPagerTemplatePageField>
                               </Fields>
                           </telerik:RadDataPager><br />
                            
                           <asp:PlaceHolder ID="EmployeesContainer" runat="server">
                           </asp:PlaceHolder>
                           <div class="clear"></div>
                           <telerik:RadDataPager ID="RadDataPager2" PagedControlID="RLV_BIEN" runat="server" CssClass="RadDataPager" PageSize="10" >
                               <Fields>
                                   <telerik:RadDataPagerPageSizeField PageSizeText="Biens par page" PageSizes="10,20,30"/>
                                   <telerik:RadDataPagerButtonField FieldType="FirstPrev" FirstButtonText="First" PrevButtonText="Prev" />
                                   <telerik:RadDataPagerButtonField FieldType="Numeric" PageButtonCount="5"></telerik:RadDataPagerButtonField>
                                   <telerik:RadDataPagerButtonField FieldType="NextLast" NextButtonText="Next" LastButtonText="Last" />
                                   <telerik:RadDataPagerTemplatePageField>
                                        <PagerTemplate>
                                           <asp:DropDownList runat="server" ID="DDL_TRI2" OnSelectedIndexChanged="DDL_TRI_SelectedIndexChanged" AutoPostBack="true" CssClass="DDL_LIST_BIEN">
                                               <asp:ListItem Text="Choisir votre tri" Value="" Selected="true"></asp:ListItem>
                                               <asp:ListItem Text="Prix ascendant" Value="prixasc"></asp:ListItem>
                                               <asp:ListItem Text="Prix descendant" Value="prixdesc"></asp:ListItem>
                                               <asp:ListItem Text="Date plus recent" Value="dateasc"></asp:ListItem>
                                               <asp:ListItem Text="Date moins recent" Value="datedesc"></asp:ListItem>
                                               <asp:ListItem Text="Surface ascendant" Value="surfaceasc"></asp:ListItem>
                                               <asp:ListItem Text="Surface descendant" Value="surfacedesc"></asp:ListItem>
                                               <asp:ListItem Text="Nb pièce ascendant" Value="pieceasc"></asp:ListItem>
                                               <asp:ListItem Text="Nb pièce descendant" Value="piecedesc"></asp:ListItem>
                                               <asp:ListItem Text="Nature du bien" Value="naturebien"></asp:ListItem>
                                           </asp:DropDownList>
                                        </PagerTemplate>
                                   </telerik:RadDataPagerTemplatePageField>
                               </Fields>
                           </telerik:RadDataPager>
                            
                           <div><img src="images/px.gif" height="10" /></div>
                       </fieldset>
                   </LayoutTemplate>
                    
                   <ItemTemplate>
                       <fieldset style="float: left; width: 420px;">
                           <legend><%-- Company: <%#Eval("naturebien")%>--%></legend>
                           
                           <article class="listeBien marT10">
                               <!--Titre -->
                               <div class="typeBienTitre">
                                   <span class="plus_info"><asp:LinkButton runat="server" id="HPL_PLUSDETAIL" onclick="BTN_BIENDETAIL_CLICK" Text="Plus de détails"></asp:LinkButton></span>
                                   <asp:LinkButton runat="server" id="HPL_PLUSDETAIL2" onclick="BTN_BIENDETAIL_CLICK">
                                       <h3>Réf : <asp:Label ID="LBL_REFERENCE" runat="server"></asp:Label><br />
                                           <asp:Label ID="LBL_NATUREBIEN" runat="server"></asp:Label> - <asp:Label ID="LBL_NBPIECES_M2" runat="server"></asp:Label><asp:Label ID="LBL_VILLEBIEN3" runat="server" ></asp:Label> (<asp:Label ID="LBL_CPBIEN3" runat="server"></asp:Label>)
                                       </h3>
                                   </asp:LinkButton>
                               </div><!--Fin titre -->
 
                               <!--Bloc Gallery Photo -->
                               <div class="bGaucheList">
                                   <div style="text-align:center;margin-bottom:10px!important;"><asp:HyperLink runat="server"  id="HPL_IMG_GRAND"><asp:Image alt="Holder" CssClass="photoHolder marT0" id="IMG_GRAND" runat="server" height="100%"></asp:Image></asp:HyperLink></div>
                                   <ul id="mycarousel" class="monCarousel jcarousel-skin-tango">
                                       <telerik:RadListView ID="RadLvPhoto" runat="server" DataSourceID="WbPhoto" OnItemDataBound="RadLvPhoto_ItemDataBound">
                                           <ItemTemplate>
                                               <li><asp:HyperLink runat="server" id="HPL_PHOTOLIST"><asp:Image runat="server" alt="to" id="PHOTO" width="55px" height="36px"></asp:Image></asp:HyperLink></li>
                                            </ItemTemplate>
                                        </telerik:RadListView>
                                    </ul>
                                </div><!--Fin Bloc Gallery Photo -->
 
                                <div class="bDroiteList"><!--Description -->
                                   <h2><asp:Label ID="LBL_NATUREBIEN2" runat="server"></asp:Label> à <asp:Label ID="LBL_VILLEBIEN" runat="server"></asp:Label> (<asp:Label ID="LBL_CPBIEN" runat="server"></asp:Label>) <br />
                                       <div id="DIV_TERRAIN" runat="server" visible="false"><asp:Label ID="LBL_TERR_DESCRIP" runat="server"></asp:Label><asp:Label ID="LBL_SURF_TERRAIN" runat="server"></asp:Label> m² environ<br /></div>
                                       <div id="DIV_PIECES" runat="server" style="float:left;"><asp:Label ID="LBL_NBPIECES2" runat="server"></asp:Label> pièces de <asp:Label ID="LBL_SURFACETOT" runat="server"></asp:Label> m² environ - </div><asp:Label ID="LBL_PRIX" runat="server"></asp:Label> € F.A.I
                                    </h2><br /><br />
                                    <asp:Label ID="LBL_PUBLONG" runat="server" ></asp:Label><br /><br />
                                    <table id="TAB_DPE" runat="server">
                                        <tr>
                                           <td>Effet de serre</td>
                                           <td>Consomation énergétique</td>
                                        </tr>
                                        <tr>
                                           <td><asp:Image ID="IMG_CONSO_PETIT" runat="server" /></td>
                                           <td><asp:Image ID="IMG_CO2_PETIT" runat="server" /></td>
                                        </tr>
                                    </table>
                                </div><!--Fin Description -->
                                 
                                <div class="clear"></div>
                               <br />
                               <div class="bAgentContact"><!--Agence a contacter -->
                                   <h2><asp:HyperLink runat="server" id="HPL_AGENCE" onclick="BTN_DETAIL_CLICK" ><asp:Label ID="LBL_ENSEIGNE2" runat="server" ></asp:Label></asp:HyperLink></h2>
                                   <p class="infosAgent">
                                       <asp:Label ID="LBL_ADRESSE" runat="server"></asp:Label><br />
                                       <asp:Label ID="LBL_TEL_AGENCE" runat="server" Font-Size="12"></asp:Label><br />
                                       <asp:HyperLink id="HPL_ETRE_CONTACT"  runat="server" class="iconEtreContact" NavigateUrl="#">Nous contacter par email</asp:HyperLink>
                                   </p>
                                   <div>
                                       <telerik:RadSocialShare ID="RadSocialShare1" runat="server" BackColor="Transparent" BorderColor="Transparent">
                                           <MainButtons>
                                               <telerik:RadSocialButton SocialNetType="ShareOnFacebook"></telerik:RadSocialButton>
                                               <telerik:RadSocialButton SocialNetType="ShareOnTwitter"></telerik:RadSocialButton>
                                               <telerik:RadGoogleButton ButtonSize="Small" />
                                           </MainButtons>
                                       </telerik:RadSocialShare>
                                   </div>
                                   <div><asp:ImageButton id="IMG_AGENCE" runat="server" OnClick="BTN_DETAIL_CLICK" CssClass="photoAgenceBien"/></div>
                                   <div class="clear"></div>
                               </div><!--Fin Agent a contacter -->                                   
                           </article>
                       </fieldset>
                   </ItemTemplate>
               </telerik:RadListView>
               <!-- fin du listview-->


i test so with ajaxPanel, and i see my blue metro loading but the page stay in 1 and nothing doesn't work.


<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Metro" Transparency="30" MinDisplayTime="0"></telerik:RadAjaxLoadingPanel>
    
           <!-- debut du listview-->  
         <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" LoadingPanelID="RadAjaxLoadingPanel1"
           <telerik:RadListView ID="RLV_AGENCE" runat="server" ItemPlaceholderID="AgenceHolder" DataSourceID="WbAg"
               OnItemDataBound="RLV_AGENCE_ItemDataBound" AllowPaging="true" DataKeyNames="ag_id">
               <LayoutTemplate>
                   <fieldset style="width:635px;" id="RLV_AGENCE">
                       <legend></legend>
                       <asp:Panel ID="AgenceHolder" runat="server" />
                           <table cellpadding="0" cellspacing="0" width="100%">
               <tr>
                   <td>
                           <telerik:RadDataPager ID="RadDataPager1" PagedControlID="RLV_AGENCE" runat="server" CssClass="RadDataPager" PageSize="5">
                               <Fields>
                                   <telerik:RadDataPagerPageSizeField PageSizeText="Agences par page" PageSizes="10,20,30"/>
                                   <telerik:RadDataPagerButtonField FieldType="FirstPrev" FirstButtonText="First" PrevButtonText="Prev" />
                                   <telerik:RadDataPagerButtonField FieldType="Numeric" PageButtonCount="5"></telerik:RadDataPagerButtonField>
                                   <telerik:RadDataPagerButtonField FieldType="NextLast" NextButtonText="Next" LastButtonText="Last" />
                                   <telerik:RadDataPagerTemplatePageField>
                                           <PagerTemplate></PagerTemplate>
                                   </telerik:RadDataPagerTemplatePageField>
                               </Fields>
                           </telerik:RadDataPager>
                           <br />
                           
                        <telerik:RadDataPager ID="RadDataPager2" PagedControlID="RLV_AGENCE" runat="server" CssClass="RadDataPager" PageSize="5">
                               <Fields>
                                   <telerik:RadDataPagerPageSizeField PageSizeText="Agences par page" PageSizes="10,20,30"/>
                                   <telerik:RadDataPagerButtonField FieldType="FirstPrev" FirstButtonText="First" PrevButtonText="Prev" />
                                   <telerik:RadDataPagerButtonField FieldType="Numeric" PageButtonCount="5"></telerik:RadDataPagerButtonField>
                                   <telerik:RadDataPagerButtonField FieldType="NextLast" NextButtonText="Next" LastButtonText="Last" />
                                   <telerik:RadDataPagerTemplatePageField>
                                           <PagerTemplate></PagerTemplate>
                                   </telerik:RadDataPagerTemplatePageField>
                               </Fields>
                           </telerik:RadDataPager>
                       <br />
                        </td>
               </tr>
           </table>
 
                   </fieldset>
               </LayoutTemplate>
                    
               <ItemTemplate>
                   <div class="bAgentContact agences"> <!--bAgentContact1 -->
                       <h2><asp:Label ID="LBL_ENSEIGNE" runat="server" ></asp:Label></h2>
                       <p class="marL17 marT10"><strong><asp:Label ID="LBL_CODEAGENCE" runat="server" ></asp:Label></strong></p>
                       <p class="infosAgent"><asp:Label ID="LBL_ADRESSE" runat="server" ></asp:Label><br/>
                           <asp:Label ID="LBL_TEL" runat="server" Font-Size="12"></asp:Label><br/>
                           <asp:HyperLink id="HPL_ETRE_CONTACT" runat="server" class="iconEtreContact" NavigateUrl="#">Nous contacter par email</asp:HyperLink>
                       </p>
                       <div><asp:ImageButton alt="Photo" CssClass="pAgenceBien"  id="IMG_AGENCE" runat="server" OnClick="BTN_DETAIL_CLICK"></asp:ImageButton></div>             
                       <div class="clear"></div>
                   </div><!--Fin bAgentContact -->
               </ItemTemplate>
           </telerik:RadListView>
             </telerik:RadAjaxPanel>


If a person , get a success , with radDatapager in Radlistview with ajax, please help me !

Konstantin Dikov
Telerik team
 answered on 18 Oct 2013
1 answer
79 views
I noticed that in any IE browser, the content div is slightly wider than the container.

This occurs only when the content area is in DIV mode and Auto Resize is set to true.

I attached a screen shot from the demos site.
Ianko
Telerik team
 answered on 18 Oct 2013
2 answers
266 views
How do i reverse the slider direction without reversing the numbers?

I tried this which almost works, but when applying a value of 5 the slider still thinks 5 is at the very end
slider.IsDirectionReversed = true;
slider.ItemType = SliderItemType.Item;
slider.Items.Add(new RadSliderItem("5","5"));
slider.Items.Add(new RadSliderItem("4", "4"));
slider.Items.Add(new RadSliderItem("3", "3"));
slider.Items.Add(new RadSliderItem("2", "2"));
slider.Items.Add(new RadSliderItem("1", "1"));
Jason
Top achievements
Rank 2
 answered on 18 Oct 2013
2 answers
109 views
Here´s what my goal is, when i hoover/select a row (client-side) i want the row to expand,  load and show detailed information
-i dont want the expand or + sign to be shown
-it has to collect information from the webservice on each call so i cant load all data to the mastertableview.

please see this site when you hoover a product name or select row, this is pretty much exactly what i want to accomplish.
http://www.prisjakt.nu/kategori.php?k=107
http://www.prisjakt.nu/produkt.php?e=2087097

1. Could an ajax call expand a nested grids template view under respective row to this specification?

2. could i use a ajax tooltip holding a usercontrol? if so, how do i make it show up under the selected row?

3. would i be better of using JSON and a selfmade JavaScript to alter the rows inline html and add a span/tablerow under the selected row?

Reason for leaning towards JSON is that ajax might cause to much traffic and due to very tricky sql calculations the results can take a few seconds, with JSON a partial result can be shown until its complete.

On the other hand, if there is a neat and easy way of doing this to a telerik standard using Ajax i might go this route as JSON and JavaScript could cause some browser incompability we all like to avoid taking our time.

Really appreciate any thoughts and guidelines on this
Christian
Top achievements
Rank 1
 answered on 18 Oct 2013
3 answers
51 views
Hi There,

I notice that the scrolling for chrome and safari are disabled for some reason.
Where and How can I enable scrolling?

It's required for the current application I'm working on.
See the following URL for a video of the issue.

http://screencast.com/t/0284q680H0cj

Thank you for the help.
Slav
Telerik team
 answered on 18 Oct 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?