aboutsummaryrefslogtreecommitdiffstats
path: root/gwtquery-core/src
Commit message (Collapse)AuthorAgeFilesLines
...
* a better casting for the gwtc compilerManolo Carrasco2011-04-141-2/+1
|
* Do not return unparametrized array in listManolo Carrasco2011-04-143-9/+10
|
* add fadeToggle() shortcut method in GQuery classJulien Dramaix2011-04-132-0/+19
|
* remove java.util.Map in GQuery class (closest method)Manolo Carrasco2011-04-134-60/+49
|
* tests for jsCache, permit null values and zero as key, tostringManolo Carrasco2011-04-122-29/+115
|
* implement undelegate methodsJulien Dramaix2011-04-116-0/+239
|
* add delegate() methodsJulien Dramaix2011-04-113-121/+483
|
* fixing compilationManolo Carrasco2011-04-101-1/+2
|
* New js object and methodsManolo Carrasco2011-04-104-2/+77
|
* use an unused event mask for ONSUBMITJulien Dramaix2011-04-101-2/+1
|
* add testLiveWithEventBit and testLiveWithMultipleEvent tests !Julien Dramaix2011-04-101-2/+59
|
* this line was committed by mistake, tests notized me that something was ↵Manolo Carrasco2011-04-101-0/+1
| | | | wrong :-)
* Handing multiple event bits in live and die, and list of event namesManolo Carrasco2011-04-101-50/+62
|
* oopps testLiveWithMultipleEvent() should not be committed Julien Dramaix2011-04-101-23/+25
|
* - correct live implementation to accept an array of FunctionJulien Dramaix2011-04-104-49/+102
| | | | - method live(String, Object, Function) loop on itself
* Fixing an old bug in code which was making live methods without context fail ↵Manolo Carrasco2011-04-091-4/+6
| | | | the second time. And Fixing a NullPointerException when calling die in an element without live functions
* remove unused importJulien Dramaix2011-04-092-4/+0
|
* remove compiler error: Constructors must be 'protected' in subclasses of ↵Manolo Carrasco2011-04-091-1/+2
| | | | JavaScriptObject
* live methods should follow the same api that gquery uses for bind, using ↵Manolo Carrasco2011-04-095-29/+112
| | | | Event.* constants to be more type-safe.
* implement live() and die methodsJulien Dramaix2011-04-0810-399/+1008
|
* let addLiveEvents() method callsJulien Dramaix2011-04-071-2/+2
|
* correct testJulien Dramaix2011-04-071-4/+4
|
* add closest methods !Julien Dramaix2011-04-062-9/+191
|
* Properties constructor now accepts css syntaxManolo Carrasco2011-04-062-1/+6
|
* Check that gquery has elements to avoid exceptionsManolo Carrasco2011-04-061-23/+29
|
* update lazy widgets apiManolo Carrasco2011-04-051-291/+2
|
* moved gwt widgets from gwtquery to gquery enhance pluginManolo Carrasco2011-04-0517-1493/+18
|
* nullManolo Carrasco2011-04-041-1/+1
|
* check that first element exists in all gquery methodsManolo Carrasco2011-04-042-9/+24
|
* Implement live and die methods, fixes issue#69. Little changes in .js packageManolo Carrasco2011-04-0411-26/+240
|
* make Easing an interface instead of an Enum. Users can easily their own ↵Julien Dramaix2011-04-021-6/+18
| | | | easing function. That allows also defining others easing functions in a plugin
* remove System.err.println() callsJulien Dramaix2011-03-311-2/+1
|
* add test for unwrap() methodJulien Dramaix2011-03-311-0/+19
|
* - add unwrap() methodJulien Dramaix2011-03-314-169/+966
| | | | | - correct bug in replaceWith method : order of replacing element was not kept - add animations method : delay, queue, dequeue, clearQueue, animate, stop and slide*
* improve tests for detach and remove methodsJulien Dramaix2011-03-291-1/+58
|
* Let gquery to use the most adequate selector hereManolo Carrasco2011-03-291-1/+1
|
* make rebind static and call sink only if a gwt EventListener is associated ↵Julien Dramaix2011-03-291-1/+1
| | | | to the element
* make rebind static and call sink only if a gwt EventListener is associated ↵Julien Dramaix2011-03-291-5/+8
| | | | to the element
* add detach method.Julien Dramaix2011-03-284-63/+250
| | | | | | refactoring of the remove() method to be compliant with jQuery documentation add test for remove and detach methods. Don't try to clean GQuery events if no one EventListener exists + correct bug in event cleaning
* printlnManolo Carrasco2011-03-281-2/+0
|
* Call rebind whenenver an element is reattached to the DOM, and clean events ↵Manolo Carrasco2011-03-283-40/+90
| | | | and data only if the remove method is called with "true" arg
* eq() and get() method must accept negative index (count from the end of the ↵Julien Dramaix2011-03-283-6/+102
| | | | matched set)
* Add the old widget element when its parent is HTMLPanel and we want maintain ↵Manolo Carrasco2011-03-241-3/+8
| | | | it hidden in the dom
* Handle replacement of widgets, it needs to deal with more gwt panelsManolo Carrasco2011-03-242-14/+45
|
* adding a new method to widgets utilsManolo Carrasco2011-03-171-0/+21
|
* add DecoratorPanel factoryJulien Dramaix2011-03-144-1/+74
|
* - add checkbox and radiobutton factoriesJulien Dramaix2011-03-1410-35/+260
| | | | - remove WidgetOptions interface
* update lazy interfaceJulien Dramaix2011-03-141-25/+154
|
* widgets plugin take care of widgets hierarchyJulien Dramaix2011-03-1420-146/+893
|
* call RootPanel.detachOnWindowClose only when the widget is not in another ↵Manolo Carrasco2011-03-093-17/+32
| | | | widget. Detach correctly the widget when is removed in gquery