aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* draggable: removing loggingJörn Zaefferer2008-09-031-1/+0
|
* layout demo: add new components via cloned draggables, connected to sortablesJörn Zaefferer2008-09-034-5/+24
|
* draggable: sortable.refreshItems got renamed to _refreshItemsJörn Zaefferer2008-09-031-1/+2
|
* layout demo: fixed positioning of add-button, border-top of header got ↵Jörn Zaefferer2008-09-033-4/+7
| | | | messed up in IE
* layout demo: minor js refactoring; decreased duration of loading overlay, ↵Jörn Zaefferer2008-09-034-9/+14
| | | | improved indicator position, fixed overlay in IE (100% height for html and body)
* Dialog: Fixed #3259: Remove title attribute from dialog elements on init.Scott González2008-09-031-1/+5
|
* Widget factory: Fixed #3275: Prevent multiple instantiations of the same ↵Scott González2008-09-021-5/+8
| | | | plugin on a single element.
* sortable: fixed toArray methodPaul Bakaus2008-09-021-1/+1
|
* Spinner: corrected a bug in functional demo (enable/disable switched) and ↵Ca-Phun Ung2008-09-023-811/+871
| | | | added spinner styles to the default theme.
* draggable: wrong class when trying to remove iframeFix divs (fixes #3161)Paul Bakaus2008-09-011-1/+1
|
* Add icons for controlsKeith Wood2008-08-314-2/+4
|
* Spinner: For DOM based spinners, the height is now calculated based on ↵Ca-Phun Ung2008-08-302-21/+19
| | | | number of children.
* spinner: changed data list to support any DOM container not just <ul>Ca-Phun Ung2008-08-302-12/+22
|
* Core: Fixed #3257: Added option method to widget factory.Scott González2008-08-271-4/+31
|
* Dialog: Fixed #3253: Don't allow closing modal dialogs on escape if ↵Scott González2008-08-271-4/+4
| | | | closeOnEscape is set to false.
* Sortable: fix wrong patameter in toArrayChi Cheng2008-08-261-1/+1
|
* spinner: fixed styling issues in IECa-Phun Ung2008-08-261-2/+3
|
* spinner: Included support for generic objects - currently only supports ↵Ca-Phun Ung2008-08-262-7/+72
| | | | <ul>. See visual test (#s4) for example usage. Needs more work...
* Accordion: XHTMLChi Cheng2008-08-251-2/+2
|
* Progressbar: hidden instance in ui(), options._interval->this._intervalChi Cheng2008-08-253-12/+9
| | | | Update spinner/progressbar demos
* Remove invalid includesEduardo Lundgren2008-08-241-10/+9
|
* Remove label texts, using the background labelsEduardo Lundgren2008-08-241-50/+50
|
* Use type button to avoid undesired submitsEduardo Lundgren2008-08-241-1/+1
|
* Use type button to avoid undesired submitsEduardo Lundgren2008-08-241-2/+2
|
* Functional demos fixesEduardo Lundgren2008-08-2413-123/+282
|
* Theme default minor updatesEduardo Lundgren2008-08-243-59/+243
|
* Spinner: Fixed key code constants.Scott González2008-08-241-2/+2
|
* dialog: $.keyCodeChi Cheng2008-08-241-4/+2
|
* Spinner: use keyCode from ui.core.jsChi Cheng2008-08-241-23/+3
|
* JSLint checkChi Cheng2008-08-232-3/+3
|
* Core: Fixed reference to jQuery.Scott González2008-08-231-1/+1
|
* Core: Fixed #3233: Added constants for key codes.Scott González2008-08-231-3/+32
|
* spinner: added support for numeric keypadCa-Phun Ung2008-08-211-1/+5
|
* Added tests for 3191 - handling NaN and other invalid values for relative datesKeith Wood2008-08-211-22/+43
|
* Fixed 3191 NaN causes breakage for relative datesKeith Wood2008-08-211-2/+3
|
* Fixed 3238 getDate causes error if datepicker does not existKeith Wood2008-08-211-15/+28
|
* Fixed 3180 Datepicker automatic ID assignmentKeith Wood2008-08-211-2/+3
|
* Fixed 3224 Croatian localisationKeith Wood2008-08-213-1/+30
|
* Fixed 3159 Datepicker function to do refresh/redrawKeith Wood2008-08-211-6/+15
| | | | Simplified iso8601Week function
* spinner test: currencyChi Cheng2008-08-191-2/+2
|
* Spinner test: up, down callbackChi Cheng2008-08-191-9/+18
|
* spinner: fixed rounding error when stepping=0.3Ca-Phun Ung2008-08-191-3/+4
|
* Spinner: ui() doesn't return instanceChi Cheng2008-08-192-18/+6
|
* Spinner: this.options._decimals -> this._decimalsChi Cheng2008-08-192-12/+29
| | | | decimal test
* spinner testChi Cheng2008-08-191-14/+26
|
* sortable: moved serialize brackets after every key to default value, so ↵Paul Bakaus2008-08-191-1/+1
| | | | configuring it as well using the key option is possible
* Spinner test: a bug when set stepping:0.3Chi Cheng2008-08-191-3/+11
|
* Spinner test: currency and decimal optionsChi Cheng2008-08-192-6/+146
| | | | test all: .load to load html from single html
* updated testcase to reflect the new ui.spinner changes:Ca-Phun Ung2008-08-191-6/+6
| | | | | - removed div.* for case #9 because ui.spinner now uses <button> - changed case #5 because LEFT and RIGHT keys no longer change the value of the input box. This is by design so that users could move the cursor within the input box
* Added enhancements to ui.spinner as seen at ↵Ca-Phun Ung2008-08-193-79/+345
| | | | | | | | | | | | | http://yelotofu.com/labs/jquery/UI/spinner/spinner.html Enhancements include: - removal of all hardcoded styling for better theming capability - visual test page made more appealing supporting browser zooming - added utility functions to disable, enable and destroy ui.spinner - up/down buttons listens to more mouse and keyboard events - support for decimal and currency format - ui.spinner now restricts input on keydown - cleanup occurs when the input textbox loses focus. this seems to be a better approach for future scalability