[jQuery] Layout plug-ins / Creating a Dashboard

[jQuery] Layout plug-ins / Creating a Dashboard

Dan,
I did something similar and I just put each app in a div inside a container
div and set the sub div's style attribute to float left.
i.e. => (I wouldn't use inline styles... I just put those for example)
<div id="container" style="width:700px;">
    <div class="app" style="float:left;">App 1 Icon</div>    
    <div class="app" style="float:left;">App 2 Icon</div>
    <div class="app" style="float:left;">App 3 Icon</div>
    <div class="app" style="float:left;">App 4 Icon</div>
    <div class="app" style="float:left;">App 5 Icon</div>
</div>
I hope that helps.
David Dexter
-----Original Message-----
From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On
Behalf Of Dan G. Switzer, II
Sent: Friday, March 16, 2007 12:32 PM
To: 'jQuery Discussion.'
Subject: [jQuery] Layout plug-ins / Creating a Dashboard
I'm going to be working on a "Dashboard" for an application that could
contain X number of "widgets" (a "widget" would a block element of various
width/heights that would contain charts and various threshold alerts.)
Since a user will be able to configure which "widgets" are on their
Dashboard, I need something that will dynamically lay out the widgets so
that they best fit the Dashboard window.
Before reinventing the wheel, I was just wondering if any one has seen any
good plug-ins that might help w/my layout dilemma.
Thanks,
Dan
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/




































    • Topic Participants

    • david