r1012 - in branches/dev/grid/tests/data: . txtdb
Author: paul.bakaus Date: Tue Nov 25 06:55:32 2008 New Revision: 1012 Added: branches/dev/grid/tests/data/ branches/dev/grid/tests/data/emails-json.php branches/dev/grid/tests/data/emails-xml.php branches/dev/grid/tests/data/emails.php branches/dev/grid/tests/data/employees-json.php branches/dev/grid/tests/data/txtdb/ branches/dev/grid/tests/data/txtdb/addressbook.txt branches/dev/grid/tests/data/txtdb/const.php branches/dev/grid/tests/data/txtdb/database.php branches/dev/grid/tests/data/txtdb/employees.txt
r1011 - branches/dev/grid/ui
Author: paul.bakaus Date: Tue Nov 25 06:43:03 2008 New Revision: 1011 Modified: branches/dev/grid/ui/ui.grid.js Log: grid: fixed small bug in pagination that caused more displayed pages if you click on the last page Modified: branches/dev/grid/ui/ui.grid.js ============================================================================== --- branches/dev/grid/ui/ui.grid.js (original) +++ branches/dev/grid/ui/ui.grid.js Tue Nov 25 06:43:03 2008 @@ -37,7 +37,7 @@ displayed.push(i); };
r1010 - in branches/dev/grid: themes/default ui
Author: paul.bakaus Date: Tue Nov 25 06:39:04 2008 New Revision: 1010 Modified: branches/dev/grid/themes/default/ui.all.css branches/dev/grid/ui/ui.grid.js Log: grid: implemented pagination with elliptical display Modified: branches/dev/grid/themes/default/ui.all.css ============================================================================== --- branches/dev/grid/themes/default/ui.all.css (original) +++ branches/dev/grid/themes/default/ui.all.css Tue Nov 25 06:39:04 2008 @@ -447,6 +447,17
r1009 - in branches/dev/grid: . tests/visual
Author: rdworth Date: Tue Nov 25 04:37:09 2008 New Revision: 1009 Modified: branches/dev/grid/ (props changed) branches/dev/grid/tests/visual/grid.html Log: Made dev/grid branch standalone by referencing dev/selectable using svn:externals instead of relative path outside of branch Modified: branches/dev/grid/tests/visual/grid.html ============================================================================== --- branches/dev/grid/tests/visual/grid.html (original) +++ branches/dev/grid/tests/visual/grid.html Tue
r1008 - in branches: dev/selectable/tests/visual dev/selectable/ui experimental/tests/visual expe...
Author: rdworth Date: Tue Nov 25 04:18:20 2008 New Revision: 1008 Added: branches/dev/selectable/tests/visual/selectable_keyboard.html (props changed) - copied unchanged from r1006, /branches/experimental/tests/visual/keyboard_selection.html branches/dev/selectable/ui/ui.selectable.js - copied unchanged from r1006, /branches/experimental/ui/ui.selectable.js Removed: branches/experimental/tests/visual/keyboard_selection.html branches/experimental/ui/ui.selectable.js Log: Moved selectable from experimental
r1007 - branches/dev/selectable
Author: rdworth Date: Tue Nov 25 04:11:30 2008 New Revision: 1007 Added: branches/dev/selectable/ - copied from r1005, /trunk/ Log: Created a dev/selectable branch as of rev1005
r1006 - in branches: dev/grid/tests/visual dev/grid/themes/default dev/grid/ui experimental/ui
Author: paul.bakaus Date: Tue Nov 25 03:28:14 2008 New Revision: 1006 Modified: branches/dev/grid/tests/visual/grid.html branches/dev/grid/themes/default/ui.all.css branches/dev/grid/ui/ui.grid.js branches/experimental/ui/ui.selectable.js Log: selectable (experimental): renamed selected/focussedClass to select/focusClass grid: themerollerized some of the grid (very experimental), auto scrolling while selecting (i.e. through up/down using keyboard) Modified: branches/dev/grid/tests/visual/grid.html
r1005 - trunk/ui
Author: paul.bakaus Date: Tue Nov 25 01:57:41 2008 New Revision: 1005 Modified: trunk/ui/ui.sortable.js Log: sortable: - merged back all position and scroll fixed from draggables - renamed accurate to accurateIntersection and set it to true by default - refactored intersection code (no change in logic) - added forceHelperSize option (default: false), a forced helper size is also triggered when the generated helper doesn't have any styles set for width/height, so this option won't be needed in most
r1004 - trunk/ui
Author: paul.bakaus Date: Mon Nov 24 09:02:26 2008 New Revision: 1004 Modified: trunk/ui/ui.slider.js Log: slider: fixed regression caused by a recent change in the mouse core - since the mouse core doesn't stop mousedown propagation by default now, the mousedown event was triggered twice - once by the bound handle, and once by the actual element. Modified: trunk/ui/ui.slider.js ============================================================================== --- trunk/ui/ui.slider.js (original)
r1003 - trunk/tests
Author: rdworth Date: Mon Nov 24 05:52:13 2008 New Revision: 1003 Modified: trunk/tests/progressbar.js Log: progressbar tests: started refactor Modified: trunk/tests/progressbar.js ============================================================================== --- trunk/tests/progressbar.js (original) +++ trunk/tests/progressbar.js Mon Nov 24 05:52:13 2008 @@ -8,10 +8,10 @@ var defaults = { disabled: false, - duration: 1000, - increment: 1, - interval: 1000, - range: true, + height:
r1002 - trunk/ui
Author: paul.bakaus Date: Mon Nov 24 05:48:50 2008 New Revision: 1002 Modified: trunk/ui/ui.sortable.js Log: sortable: Another regex for the innerHTML copying in the placeholder, removes the expando attribute in IE (fixes #3541) Modified: trunk/ui/ui.sortable.js ============================================================================== --- trunk/ui/ui.sortable.js (original) +++ trunk/ui/ui.sortable.js Mon Nov 24 05:48:50 2008 @@ -646,7 +646,9 @@ if(!className) { el.style.visibility
r1000 - trunk/ui
Author: paul.bakaus Date: Sun Nov 23 10:00:29 2008 New Revision: 1000 Modified: trunk/ui/ui.core.js Log: core (mouse): preventDefault in most cases instead of returning false, that blocks all bubbling events (fixed #3552) Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Sun Nov 23 10:00:29 2008 @@ -462,7 +462,11 @@ .bind('mousemove.'+this.widgetName, this._mouseMoveDelegate)
How To Submit a Plugin to jQuery UI
I just created a new page in the wiki defining the process for submitting a new plugin to jQuery UI ( <a href="http://jqueryui.pbwiki.com/Submitting-a-plugin">http://jqueryui.pbwiki.com/Submitting-a-plugin</a> ). This still needs to be fleshed out, and it references some non-existent pages. The team will be fleshing this out over the next few weeks, but we're looking for feedback from the community.
r1001 - trunk/tests/visual
Author: paul.bakaus Date: Sun Nov 23 10:14:12 2008 New Revision: 1001 Modified: trunk/tests/visual/draggable.scroll.html (props changed) Log: draggable: correct mime type on scroll test
r999 - trunk/tests/visual
Author: paul.bakaus Date: Sun Nov 23 09:46:14 2008 New Revision: 999 Added: trunk/tests/visual/draggable.scroll.html Log: draggable: advanced visual representation of the new automated tests that can be used for debugging purposes Added: trunk/tests/visual/draggable.scroll.html ============================================================================== --- (empty file) +++ trunk/tests/visual/draggable.scroll.html Sun Nov 23 09:46:14 2008 @@ -0,0 +1,158 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD
Documentation Proposal: Best Practices for Plugin Markup (Progressive Enhancement)
I think the user documentation (<a href="http://docs.jquery.com/UI">docs.jquery.com/UI</a>) should include the various types of markup each plugin can accept and describe when and why a user would want to use that style of markup. For example, if a menu can be created from JSON, a UL element or a SELECT element, we should explain the different scenarios in which it makes sense to use each. This would essentially be a guide on how to use jQuery UI for progressive enhancement. Thoughts?
r998 - in trunk: tests ui
Author: paul.bakaus Date: Sun Nov 23 09:42:24 2008 New Revision: 998 Modified: trunk/tests/draggable.js trunk/ui/ui.core.js trunk/ui/ui.draggable.js Log: core: improved logic of $.fn.scrollParent, taking positioning in account draggable: fixed and updated tests, rewrote positioning core, now passes the test suite completely in FF, IE6, IE7 Modified: trunk/tests/draggable.js ============================================================================== --- trunk/tests/draggable.js (original) +++
Progress bar designs and functional spec ready for review
Hi all - I've made a bunch of changes to the design wiki in the hope we can mark the design and spec sections complete today: http://jqueryui.pbwiki.com/ProgressIndicator :: created a set of mockups (section 2.0) for the progress bar that illustrates each of the options (label, label position) :: edited the functional spec section (section 3.0) down to only what we're building for rc3, added option for 'value' since that was missing :: linked to the filament code mockup from yesterday, updated the
r997 - trunk/tests
Author: rdworth Date: Sat Nov 22 11:29:03 2008 New Revision: 997 Added: trunk/tests/testsuite.css trunk/tests/testsuite.js Modified: trunk/tests/accordion.html trunk/tests/core.html trunk/tests/datepicker.html trunk/tests/dialog.html trunk/tests/draggable.html trunk/tests/droppable.html trunk/tests/progressbar.html trunk/tests/resizable.html trunk/tests/selectable.html trunk/tests/slider.html trunk/tests/sortable.html trunk/tests/tabs.html trunk/tests/ui.html Log: tests: formatting and cleanup for
menu widget add method arguments
I wanted to start a new thread on this since the last one got a little buried. The add method in the menu widget is currently implemented like this: add: function(markup, location){... 'Location' accepts a path string for an exact location in the menu system, like this: '2/3/1' and it always inserts the markup to that exact location. This is nice for a couple reasons: • it's concise • no need to define the type of insert, it's always a direct insertion. It falls short for a few reasons though too
r996 - trunk/tests
Author: rdworth Date: Sat Nov 22 03:18:31 2008 New Revision: 996 Modified: trunk/tests/core.html Log: removed some old references to 'flora' Modified: trunk/tests/core.html ============================================================================== --- trunk/tests/core.html (original) +++ trunk/tests/core.html Sat Nov 22 03:18:31 2008 @@ -15,7 +15,7 @@ html { border: 0; } </style> </head> -<body class="flora"> +<body> <h1 id="header">jQuery UI Core Test Suite</h1> <h2 id="banner"></h2>
r995 - in trunk: demos/functional demos/functional/templates demos/real-world/range-interface tests
Author: rdworth Date: Sat Nov 22 03:17:10 2008 New Revision: 995 Modified: trunk/demos/functional/index.html trunk/demos/functional/templates/ui.tabs.php trunk/demos/real-world/range-interface/index.html trunk/tests/all.html trunk/tests/all_2.html trunk/tests/core.html trunk/tests/datepicker.html trunk/tests/dialog.html trunk/tests/selectable.html trunk/tests/ui.html Log: removed some old references to 'flora' Modified: trunk/demos/functional/index.html ==============================================================================
r994 - trunk/ui
Author: eduardolundgren Date: Fri Nov 21 21:49:06 2008 New Revision: 994 Modified: trunk/ui/ui.resizable.js Log: Resizable: disableSelection using jquery plugin. Modified: trunk/ui/ui.resizable.js ============================================================================== --- trunk/ui/ui.resizable.js (original) +++ trunk/ui/ui.resizable.js Fri Nov 21 21:49:06 2008 @@ -473,7 +473,7 @@ this.helper.appendTo("body"); if (o.disableSelection) - $.ui.disableSelection(this.helper.get(0));
jQuery UI Development Schedule
I've created a page on the wiki ( <a href="http://jqueryui.pbwiki.com/Development-phases">http://jqueryui.pbwiki.com/Development-phases</a> ) to document how we do development. This page contains our development cycle (pre, beta, rc, final) and the life cycle of a plugin. This needs quite a bit of work before it can be finalized, so please review what's there and post your comments. Thanks.
r920 - trunk/ui
Author: eduardolundgren Date: Tue Nov 11 19:57:23 2008 New Revision: 920 Modified: trunk/ui/ui.core.js trunk/ui/ui.sortable.js Log: Core and Sortable: $.ui.contains method moved into the core. This method could be util for another components. Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Tue Nov 11 19:57:23 2008 @@ -66,7 +66,19 @@ set[i][1].apply(instance.element,
r993 - in trunk: tests ui
Author: paul.bakaus Date: Fri Nov 21 11:40:45 2008 New Revision: 993 Modified: trunk/tests/draggable.js trunk/tests/droppable.html trunk/ui/ui.draggable.js Log: draggable: added missing default for zIndex and cursorAt, added missing scroll tests (unfortunately showing big regressions that need to be fixed prior to 1.6) Modified: trunk/tests/draggable.js ============================================================================== --- trunk/tests/draggable.js (original) +++ trunk/tests/draggable.js Fri
r992 - trunk/ui
Author: eduardolundgren Date: Fri Nov 21 10:41:57 2008 New Revision: 992 Modified: trunk/ui/ui.sortable.js Log: Sortables: using isOverAxis. Modified: trunk/ui/ui.sortable.js ============================================================================== --- trunk/ui/ui.sortable.js (original) +++ trunk/ui/ui.sortable.js Fri Nov 21 10:41:57 2008 @@ -395,8 +395,8 @@ return false; } - var isOverElementHeight = $.ui.isOverHeight(helperTop + dyClick, itemTop, itemHeight);
r892 - trunk/ui
Author: eduardolundgren Date: Sun Nov 9 21:16:22 2008 New Revision: 892 Modified: trunk/ui/ui.core.js Log: Core: Intersect methods into the core. Determines when element "a" coordinates intersects with element "b". Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Sun Nov 9 21:16:22 2008 @@ -104,6 +104,21 @@ has = (e[scroll] > 0); e[scroll] = 0; return
r991 - trunk/ui
Author: eduardolundgren Date: Fri Nov 21 10:41:19 2008 New Revision: 991 Modified: trunk/ui/ui.core.js Log: Core: isOverAxis avoid duplicated method logic. Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Fri Nov 21 10:41:19 2008 @@ -118,19 +118,14 @@ return has; }, - isOverHeight: function(y, top, height) { - //Determines when y coordinate is over "b"
r990 - trunk/ui
Author: eduardolundgren Date: Fri Nov 21 07:30:15 2008 New Revision: 990 Modified: trunk/ui/ui.sortable.js Log: Sortables: Fixed tolerance guess. Changed name _intersectsWithEdges to _intersectsWithPointer. Modified: trunk/ui/ui.sortable.js ============================================================================== --- trunk/ui/ui.sortable.js (original) +++ trunk/ui/ui.sortable.js Fri Nov 21 07:30:15 2008 @@ -13,7 +13,6 @@ (function($) { $.widget("ui.sortable", $.extend({}, $.ui.mouse, {
Trac
There's a ticket (#3612) in the bug tracker I'm trying to close off but I don't seem to have any available actions. Who do I speak to to get more access? My username is: caphun<br clear="all"> -- Ca-Phun Ung + <a href="http://yelotofu.com">http://yelotofu.com</a> + css, django, hongkong, html, javascript, php
Addition of format argument to Sortable's serialize function.
Posting here as the jquery.ui tracker seems to be down. The current implementation of jquery's Sortable serialize uses the php style format for an array in the query string, as php converts it directly into an array when receiving it. ?field[]=1&field[]=2 However when not using php, this creates unnecessary work. Below is a patch which allows the .serialize() to specify the postfix if wanted - it is backward compatible. ~$ diff ui.sortable.old.js ui.sortable.js 72c72 < if(res) str.push((o.key
r989 - trunk/ui
Author: paul.bakaus Date: Fri Nov 21 06:01:44 2008 New Revision: 989 Modified: trunk/ui/ui.draggable.js Log: draggable: the snap events 'release' and 'snap' now both have valid mousemove events attached. Modified: trunk/ui/ui.draggable.js ============================================================================== --- trunk/ui/ui.draggable.js (original) +++ trunk/ui/ui.draggable.js Fri Nov 21 06:01:44 2008 @@ -625,7 +625,7 @@ //Yes, I know, this is insane ;) if(!((l-d
Slider moveTo
Let .slider("moveTo",value,true) == .slider("moveTo",value,0,true) :) (And use "true" to stop triggering callbacks while "return false" means prevent default in javascript? Or like cancelBubble = true ?)
r988 - trunk
Author: paul.bakaus Date: Fri Nov 21 05:00:21 2008 New Revision: 988 Modified: trunk/MIT-LICENSE.txt Log: fixed header information in MIT license Modified: trunk/MIT-LICENSE.txt ============================================================================== --- trunk/MIT-LICENSE.txt (original) +++ trunk/MIT-LICENSE.txt Fri Nov 21 05:00:21 2008 @@ -1,4 +1,4 @@ -Copyright (c) 2007 John Resig, http://jquery.com/ +Copyright (c) 2008 Paul Bakaus, http://ui.jquery.com/ This software consists of voluntary
Removing trailing spaces with build.xml
I added on /ui/ directory a build.xml file where we can add tasks that make our life easier. For now the first task is the "remove-spaces" to help us removing trailing spaces of all js files. Hope it helps you guys.<br clear="all"> -- Eduardo Lundgren Software Engineer Liferay, Inc. Enterprise. Open Source. For Life.
r987 - in branches/dev/spinner: tests ui
Author: pazu2k@gmail.com Date: Fri Nov 21 00:37:06 2008 New Revision: 987 Modified: branches/dev/spinner/tests/spinner.js branches/dev/spinner/ui/ui.spinner.js Log: spinner: removed duplicate test for defaults. changed defaults for items, max & min to null to match tests. Modified: branches/dev/spinner/tests/spinner.js ============================================================================== --- branches/dev/spinner/tests/spinner.js (original) +++ branches/dev/spinner/tests/spinner.js Fri
r986 - trunk/ui
Author: rdworth Date: Thu Nov 20 20:58:53 2008 New Revision: 986 Modified: trunk/ui/ui.accordion.js Log: accordion: formatting changes - moved some things around for consistency. _init and destroy at the top. Sorted defaults alphabetically. Modified: trunk/ui/ui.accordion.js ============================================================================== --- trunk/ui/ui.accordion.js (original) +++ trunk/ui/ui.accordion.js Thu Nov 20 20:58:53 2008 @@ -13,6 +13,7 @@ (function($) { $.widget("ui.accordion",
r985 - trunk/ui
Author: rdworth Date: Thu Nov 20 20:48:06 2008 New Revision: 985 Modified: trunk/ui/ui.tabs.js Log: tabs: formatting changes - moved some things around for consistency. _init and destroy at the top. ui last. Sorted defaults alphabetically. Modified: trunk/ui/ui.tabs.js ============================================================================== --- trunk/ui/ui.tabs.js (original) +++ trunk/ui/ui.tabs.js Thu Nov 20 20:48:06 2008 @@ -13,10 +13,36 @@ (function($) { $.widget("ui.tabs", { + _init:
r984 - trunk
Author: pazu2k@gmail.com Date: Thu Nov 20 20:45:11 2008 New Revision: 984 Modified: trunk/AUTHORS.txt Log: changed author url for Ca-Phun Ung Modified: trunk/AUTHORS.txt ============================================================================== --- trunk/AUTHORS.txt (original) +++ trunk/AUTHORS.txt Thu Nov 20 20:45:11 2008 @@ -20,7 +20,7 @@ Todd Parker John Resig Patty Toland -Ca-Phun Ung (pazu2k@gmail.com) +Ca-Phun Ung (yelotofu.com) Keith Wood (kbwood@virginbroadband.com.au) Richard D.
Next Page