Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6692905
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:55:16+00:00 2026-05-26T05:55:16+00:00

I am developing a web application that is going to be both IE9/HTML5 compatible

  • 0

I am developing a web application that is going to be both IE9/HTML5 compatible and work on the iPad. The issue I’m running into is that I can’t seem to get frames to scroll correctly (or at all) on the iPad while it works fine in a browser. I have tried both single finger scrolling and two-finger scrolling and all of the listed combinations below. Any help/ideas would be greatly appreciated.

(FYI: Telerik is a third party control library)

<telerik:RadSplitter ID="radSplitter2" runat="server" Height="100%">
  <telerik:RadPane ID="RadPane2" runat="server" Scrolling="Both">
    <iframe width="100%" height="100%" scrolling="no" src="HTMLPage1.htm" />
  </telerik:RadPane>
</telerik:RadSplitter>

<telerik:RadSplitter ID="radSplitter3" runat="server" Height="100%">
  <telerik:RadPane ID="RadPane4" runat="server" Scrolling="Both" ContentUrl="HTMLPage1.htm">
  </telerik:RadPane>
</telerik:RadSplitter>

<telerik:RadSplitter ID="radSplitter4" runat="server" Height="100%">
  <telerik:RadPane ID="RadPane5" runat="server" Scrolling="Both">
    <div style="width:100%; overflow:auto">
      <iframe width="100%" height="100%" scrolling="no" src="HTMLPage1.htm" />
    </div>
  </telerik:RadPane>
</telerik:RadSplitter>

This code works but I really need to be able to include a page as a frame.

<telerik:RadSplitter ID="radSplitter1" runat="server" Height="100%">
  <telerik:RadPane ID="RadPane3" runat="server" Scrolling="Both">
    This Section Scrolls
    This Section Scrolls
    This Section Scrolls
    This Section Scrolls
    This Section Scrolls
    This Section Scrolls
  </telerik:RadPane>
</telerik:RadSplitter>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T05:55:17+00:00Added an answer on May 26, 2026 at 5:55 am

    The solution ended up being just forcing the frames to scroll using javascript:

    just put this in place of your tag.

        <div id="scrollDiv" runat="server" style="position:relative; overflow:auto"></div>
        <iframe id="iFrame1" runat="server" style="display:none"></iframe>
    
        <script type="text/javascript" charset="utf-8">
            function initMobileScroll_<%= this.ClientID %>(ele) {
                var mobileScrollArea = document.getElementById(ele);
    
                mobileScrollArea.addEventListener('touchstart', function (event) {
                    touchstart_<%= this.ClientID %>(event);
                });
    
                mobileScrollArea.addEventListener('touchmove', function (event) {
                    touchmove_<%= this.ClientID %>(event);
                });
    
                // let’s set the starting point when someone first touches
                function touchstart_<%= this.ClientID %>(e) {
                    startY = e.touches[0].pageY;
                    startX = e.touches[0].pageX;
                }
    
                // calls repeatedly while the user’s finger is moving
                function touchmove_<%= this.ClientID %>(e) {
                    var touches = e.touches[0];
    
                    // override the touch event’s normal functionality
                    e.preventDefault();
    
                    // y-axis
                    var touchMovedY = startY - touches.pageY;
                    startY = touches.pageY; // reset startY for the next call
                    mobileScrollArea.scrollTop = mobileScrollArea.scrollTop + touchMovedY;
    
                    // x-axis
                    var touchMovedX = startX - touches.pageX;
                    startX = touches.pageX; // reset startX for the next call
                    mobileScrollArea.scrollLeft = mobileScrollArea.scrollLeft + touchMovedX;
                }
    
            }
    
            var theFrame_<%= this.ClientID %> = document.getElementById('<%= iFrame1.ClientID %>');
            theFrame_<%= this.ClientID %>.onload = function () {
                var frameBody = theFrame_<%= this.ClientID %>.contentWindow.document.body.innerHTML;
                document.getElementById('<%= scrollDiv.ClientID %>').innerHTML = frameBody;
            }
            initMobileScroll_<%= this.ClientID %>('<%= scrollDiv.ClientID %>');
        </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm developing a web application that is going to be served from an OSGi
We're developing a web application that is going to be used by external clients
I'm developing a web application that is targeted at IE and during testing would
We are developing a web application that will be sold to many clients. There
I'm developing a web application that uses an in-house SSO server for authentication. I
I'm developing a Web application that will let users upload images. My concern is
I'm developing a web application that shows some controls and descriptions dynamically (I don't
I am currently developing a web application that receives data from an on-site database.
I'm developing a web application that has to support lots of simultaneous requests, and
I am in the process of developing a web application that consists visually of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.