Custom Query (7259 matches)
Results (82 - 84 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1938 | fixed | [PATCH] sliderMoveTo for multiple handles | ||
Description |
There're several folks asking for multiple-handle sliderMoveTo on the UI list: http://groups.google.com/group/jquery-ui/browse_thread/thread/20db89aaad9836f0# Kalath e-mailed me off-list and asked about it, and I wrote up a quick patch. It adds an extra parameter to sliderMoveTo which is the (zero-based) index of the handle to move, so to move the 3rd handle to 40 you'd do:
The patch moves most of the body of moveTo() into an inner function that takes the interaction handle, and then calls that function with either this.interaction (single handle) or this.interactions[which] (multiple handles). All the rest of the touched lines are indentation changes or this->self swaps to make the moveTo body work inside an inner function. It's dependent upon bug #1737. The patches themselves are independent (and both should be applied), but sliderMoveTo doesn't work at all until #1737 is fixed. |
|||
#1939 | fixed | [PATCH] Improved demos for slider | ||
Description |
I've done some additional demos for the slider widget, mostly as testcases for bugs that I was having, though also to refer back to as I use more functionality. Changes from the current file:
|
|||
#1949 | fixed | UI's popup calendar contains HTML entities | ||
Description |
By default, the popup calendar cannot be used in XML pages delivered as application/xhtml+xml under Firefox 2.0 or 3.0. The problem is that the HTML fragment inserted contains HTML entities, which don't work in innerHTML. The calendar throws an "Invalid Entity" exception. Fortunately, it's an easy fix, backwards compatible, and compatible with any browser that jQuery supports. Index: ui.cal.js =================================================================== --- ui.cal.js (revision 1244) +++ ui.cal.js (working copy) @@ -25,8 +25,8 @@ this.regional[''] = { // Default regional settings clearText: 'Clear', // Display text for clear link closeText: 'Close', // Display text for close link - prevText: '<Prev', // Display text for previous month link - nextText: 'Next>', // Display text for next month link + prevText: '<Prev', // Display text for previous month link + nextText: 'Next>', // Display text for next month link currentText: 'Today', // Display text for current month link dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], // Names of days starting at Sunday dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], @@ -1182,7 +1182,7 @@ (unselectable ? '' : ' onmouseover="jQuery(this).addClass(\'datepicker_daysCellOver\');"' + ' onmouseout="jQuery(this).removeClass(\'datepicker_daysCellOver\');"' + ' onclick="jQuery.datepicker._selectDay(' + this._id + ',' + drawMonth + ',' + drawYear + ', this);"') + '>' + // actions - (otherMonth ? (showOtherMonths ? printDate.getDate() : ' ') : // display for other months + (otherMonth ? (showOtherMonths ? printDate.getDate() : ' ') : // display for other months (unselectable ? printDate.getDate() : '<a>' + printDate.getDate() + '</a>')) + '</td>'; // display for this month printDate.setDate(printDate.getDate() + 1); } |