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 8006783
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T17:37:36+00:00 2026-06-04T17:37:36+00:00

I Have implemented Split view model in Jquery mobile + phone gap by following

  • 0

I Have implemented Split view model in Jquery mobile + phone gap by following the instructions in the link:

http://www.youtube.com/watch?v=qnNyHPWRz-Y .

Its very easy to implement a split view for iPad in JQuery mobile

and it takes 2-3 minuits to implement a split view using jQuery mobile+ phone gap in iPad.

 <body> 
        <div data-role="page" data-theme="e" data-content-theme="d">

            <div data-role="header">
                JQuery Split View using link http://www.youtube.com/watch?v=qnNyHPWRz-Y
            </div>

            <div data-role="content">

                <!--- Right side view------>
                <div class="content-secondary">
                    <h3>Root View</h3>
                    <ul data-role="listview">
                        <li>Ashford Ridge Mine</li>
                        <li>Ashland Gold Mine</li>
                        <li>Brodford mine</li>
                        <li>Big Horn Mine</li>
                        <li>Elko pass</li>
                        <li>Emerad pine Gold</li>
                    </ul>
                </div>

                <!--- Right side view------>
                <div class="content-primary">
                    <h3>Details View</h3>
                    <p>
                    Detail VIEWS goes here......            
                    </p>
                </div>

            </div>

        </div>

    </body>

I need ti implement did select method to the left side root view

as when we click a row in left side table it to display corresponding selected row's information and details in right side details view.

![enter image description here][1]
But how to implement did select method to the left side root view

to display corresponding selected row's information and details in right side details view in the form of table views.

Or please provide me a good tutorial for Split view using jQuery mobile phone gap in iPhone

  • 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-06-04T17:37:37+00:00Added an answer on June 4, 2026 at 5:37 pm

    Other way is to show and hide the div using css. There could also a better way to do it. by my 2cents!!

    splitwin.html

    <!DOCTYPE html> 
    <html> 
        <head> 
        <title>Another Page</title>     
        <link rel="stylesheet" href="css/jquery.mobile-1.0.css" />
        <link rel="stylesheet" href="css/jqm-docs.css" />
        <script type="text/javascript" src="js/jquery.js"></script>
        <script type="text/javascript" src="js/jquery.mobile-1.0.js"></script>
        <script type="text/javascript" src="js/demo.js"></script>
    </head> 
    <body>
    
     <body>
        <div data-role="page" data-theme="e" data-content-theme="d">
            <div data-role="header">
                JQuery Split View using link http://www.youtube.com/watch?v=qnNyHPWRz-Y
            </div>
            <div data-role="content">
                <!--- Right side view------>
                <div class="content-secondary">
                    <h3>Root View</h3>
                    <ul data-role="listview">
                        <li>
                            <a href="#" id="Ashford">Ashford Ridge Mine</a>
                        </li>
                        <li>
                            <a href="#" id="Ashland">Ashland Gold Mine</a>
                        </li>
                        <li>
                            Brodford mine
                        </li>
                        <li>
                            Big Horn Mine
                        </li>
                        <li>
                            Elko pass
                        </li>
                        <li>
                            Emerad pine Gold
                        </li>
                    </ul>
                </div>
                <!--- Right side view------>
                <div class="content-primary">
                    <h3>Details View</h3>
                    <p>
                        Detail VIEWS goes here......
                        <div id="link1" style="display:none">
                            Clicked 
                            Ashford Ridge Mine
                        </div>
                            <div id="link2" style="display:none">
                            Clicked 
                            Ashland Gold Mine
                        </div>
                    </p>
                </div>
            </div>
        </div>
            </body> 
    
    </body>
    </html>
    

    demo.js

    $('a#Ashford').live('click', function() {
        $("div#link2").hide();  
        $("div#link1").show();  
    });
    
    $('a#Ashland').live('click', function() {
        $("div#link1").hide();  
        $("div#link2").show();  
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have implemented a WebApp using SplitView - http://asyraf9.github.com/jquery-mobile/ - (and that seems to
I have implemented a left side list view in split view using the following
I have implemented an app in iphone using sencha touch & phone gap .
I have implemented a custom split view controller which — in principle — works
I have implemented a sencha touch phone gap application on ipad. using the kitchen
I have a split view controller in my Ipad app, in which the detail
I have implemented the First-Fit-Decreasing bin packing algorithm to split a list of numbers
In my app, I have a split screen in which the detail view is
I have been trying to add/implement this example to my existing Split View app
I have a split view controller in which the detail view has a button

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.