Re: [jQuery] how can I improve this?
I rebuilt this using jquery.accordion.js, though I've altered the idea a bit from the original. Now, only one view is open at a time, rather than splitting the screen 50/50 with two. In case anyone is interested, the mockup is posted here: http://www.monkeypuzzle.net/testfiles/jquery/splitwindow/splitwindow_7.html Alexandre Plennevaux wrote: > > Did you consider using an Accordion? > http://jquery.bassistance.de/accordion/accordionDemo.htmld > > It should be possible to adapt it to your needs. > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > Behalf Of rolfsf > Sent: mardi 27 février 2007 0:30 > To: discuss@jquery.com > Subject: [jQuery] how can I improve this? > > > I've managed to build a rough model of what I'm trying to do, though it > will > be obvious from my jquery code that I have limited knowlege of how to > really > harness the power of jquery. This mock-up works "okay" in FF, a little > less > so in IE6 & 7, and doesn't really work in Safari. > > I've posted the page here - all code is inline: > http://www.monkeypuzzle.net/testfiles/jquery/splitwindow/ > > The idea is that you start with a Summary View with a data table. Clicking > on some data will split the screen in half vertically and open a Detail > View > via slideDown pertaining to that data (drill down one level). > > Clicking on some data in that Detail View should close (slideUp) the > Summary > View, and load a 3rd 'More Details' window via slideDown (drill down one > more level). > > Closing 'More Details' should return to Summary View/Detail View > split-screen. Closing 'Detail View' should kill both Detail View & More > Details, leaving you with Summary View full screen. > > Does that make sense? Can anyone advise on how to streamline my jquery > (even > the markup!) and get things sliding smoothly? > > Thanks! > -- > View this message in context: > http://www.nabble.com/how-can-I-improve-this--tf3296960.html#a9171800 > Sent from the JQuery mailing list archive at Nabble.com. > > > ___ > jQuery mailing list > discuss@jquery.com > http://jquery.com/discuss/ > > -- > Ce message Envoi est certifié sans virus connu. > Analyse effectuée par AVG. > Version: 7.5.446 / Base de données virus: 268.18.4/702 - Date: 25/02/2007 > 15:16 > > > > ___ > jQuery mailing list > discuss@jquery.com > http://jquery.com/discuss/ > > -- View this message in context: http://www.nabble.com/how-can-I-improve-this--tf3296960.html#a9196108 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
Re: [jQuery] how can I improve this?
I considered it, and perhaps I should look again. When I first looked it seemed like it was geared more toward typical accordion menus... Alexandre Plennevaux wrote: > > Did you consider using an Accordion? > http://jquery.bassistance.de/accordion/accordionDemo.htmld > > It should be possible to adapt it to your needs. > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > Behalf Of rolfsf > Sent: mardi 27 février 2007 0:30 > To: discuss@jquery.com > Subject: [jQuery] how can I improve this? > > > I've managed to build a rough model of what I'm trying to do, though it > will > be obvious from my jquery code that I have limited knowlege of how to > really > harness the power of jquery. This mock-up works "okay" in FF, a little > less > so in IE6 & 7, and doesn't really work in Safari. > > I've posted the page here - all code is inline: > http://www.monkeypuzzle.net/testfiles/jquery/splitwindow/ > > The idea is that you start with a Summary View with a data table. Clicking > on some data will split the screen in half vertically and open a Detail > View > via slideDown pertaining to that data (drill down one level). > > Clicking on some data in that Detail View should close (slideUp) the > Summary > View, and load a 3rd 'More Details' window via slideDown (drill down one > more level). > > Closing 'More Details' should return to Summary View/Detail View > split-screen. Closing 'Detail View' should kill both Detail View & More > Details, leaving you with Summary View full screen. > > Does that make sense? Can anyone advise on how to streamline my jquery > (even > the markup!) and get things sliding smoothly? > > Thanks! > -- > View this message in context: > http://www.nabble.com/how-can-I-improve-this--tf3296960.html#a9171800 > Sent from the JQuery mailing list archive at Nabble.com. > > > ___ > jQuery mailing list > discuss@jquery.com > http://jquery.com/discuss/ > > -- > Ce message Envoi est certifié sans virus connu. > Analyse effectuée par AVG. > Version: 7.5.446 / Base de données virus: 268.18.4/702 - Date: 25/02/2007 > 15:16 > > > > ___ > jQuery mailing list > discuss@jquery.com > http://jquery.com/discuss/ > > -- View this message in context: http://www.nabble.com/how-can-I-improve-this--tf3296960.html#a9172723 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
Re: [jQuery] how can I improve this?
Did you consider using an Accordion? http://jquery.bassistance.de/accordion/accordionDemo.htmld It should be possible to adapt it to your needs. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of rolfsf Sent: mardi 27 février 2007 0:30 To: discuss@jquery.com Subject: [jQuery] how can I improve this? I've managed to build a rough model of what I'm trying to do, though it will be obvious from my jquery code that I have limited knowlege of how to really harness the power of jquery. This mock-up works "okay" in FF, a little less so in IE6 & 7, and doesn't really work in Safari. I've posted the page here - all code is inline: http://www.monkeypuzzle.net/testfiles/jquery/splitwindow/ The idea is that you start with a Summary View with a data table. Clicking on some data will split the screen in half vertically and open a Detail View via slideDown pertaining to that data (drill down one level). Clicking on some data in that Detail View should close (slideUp) the Summary View, and load a 3rd 'More Details' window via slideDown (drill down one more level). Closing 'More Details' should return to Summary View/Detail View split-screen. Closing 'Detail View' should kill both Detail View & More Details, leaving you with Summary View full screen. Does that make sense? Can anyone advise on how to streamline my jquery (even the markup!) and get things sliding smoothly? Thanks! -- View this message in context: http://www.nabble.com/how-can-I-improve-this--tf3296960.html#a9171800 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Ce message Envoi est certifié sans virus connu. Analyse effectuée par AVG. Version: 7.5.446 / Base de données virus: 268.18.4/702 - Date: 25/02/2007 15:16 ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] how can I improve this?
I've managed to build a rough model of what I'm trying to do, though it will be obvious from my jquery code that I have limited knowlege of how to really harness the power of jquery. This mock-up works "okay" in FF, a little less so in IE6 & 7, and doesn't really work in Safari. I've posted the page here - all code is inline: http://www.monkeypuzzle.net/testfiles/jquery/splitwindow/ The idea is that you start with a Summary View with a data table. Clicking on some data will split the screen in half vertically and open a Detail View via slideDown pertaining to that data (drill down one level). Clicking on some data in that Detail View should close (slideUp) the Summary View, and load a 3rd 'More Details' window via slideDown (drill down one more level). Closing 'More Details' should return to Summary View/Detail View split-screen. Closing 'Detail View' should kill both Detail View & More Details, leaving you with Summary View full screen. Does that make sense? Can anyone advise on how to streamline my jquery (even the markup!) and get things sliding smoothly? Thanks! -- View this message in context: http://www.nabble.com/how-can-I-improve-this--tf3296960.html#a9171800 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/