aboutsummaryrefslogtreecommitdiffstats
path: root/gwtquery-core/src/test/java
Commit message (Collapse)AuthorAgeFilesLines
...
* better management of binding/unbinding multiple events at once / fix the ↵Julien Dramaix2012-05-181-266/+345
| | | | issue 134
* Fix NPE when calling styleImpl before it was initialized. Fix testsManolo Carrasco2012-05-151-4/+13
|
* Fix computing of width and height in inline elements so as gquery behaves ↵Manolo Carrasco2012-03-181-0/+8
| | | | the same than jquery
* Allow unbinding of certain functions like jquery doesManolo Carrasco2012-03-141-1/+20
|
* Throw a NullPointerException when casting null to Js objects. Fixes issue_122Manolo Carrasco2012-02-131-0/+7
|
* Implementation of Ajax JSONP using script tagsManolo Carrasco2012-02-081-1/+53
|
* fix issue 119 and fix nth-child selector + testsJulien Dramaix2012-01-191-0/+47
|
* JsonBuilder: Support of java.util.List and java.util.Date types. Fix arrays ↵Manolo Carrasco2011-12-181-1/+22
| | | | of JsonBuilder objects, Fixes issue 117. Fix Properties toString methods when there are arrays of objects
* fixes issue111Manolo Carrasco2011-11-041-23/+36
|
* fix tests, group them in a gwt-suite to run in a jvm instance and speed up ↵Manolo Carrasco2011-11-0313-30/+159
| | | | maven test
* Fix testsManolo Carrasco2011-10-191-0/+6
|
* setters in xml builders was not implementedManolo Carrasco2011-10-191-1/+11
|
* Many changes in the Ajax plugin, and fixes in order to release 1.1.0 soonManolo Carrasco2011-10-181-0/+9
|
* First version of XmlBuilder generator, only getters work right nowManolo Carrasco2011-09-301-7/+30
|
* remove printoutsManolo Carrasco2011-09-243-3/+0
|
* Fix testManolo Carrasco2011-09-241-1/+2
|
* Dollar is a char valid in property keysManolo Carrasco2011-09-231-0/+2
|
* use JSON.parse when available when parsing properties to avoid security issuesManolo Carrasco2011-09-231-19/+9
|
* Adding Ajax abilities to Gquery, as a easy way to get and handle data from ↵Manolo Carrasco2011-09-211-0/+83
| | | | non gwt servers. Added a generator to convert JSON objects to java builders/pojos
* Added GQ static class to house all static methods of the Api. It should be ↵Manolo Carrasco2011-09-191-0/+2
| | | | named $, but gwt compiler fails when a class contains the dollar. Added a simple implementation of the jquery Ajax API, text, html, xml and json responses are handle well by gquery.
* fix for issue 97Julien Dramaix2011-09-051-16/+74
|
* prepare version 1.1.0Manolo Carrasco2011-08-281-1/+0
|
* fix testManolo Carrasco2011-08-271-8/+8
|
* Revert r773, since we can override properties in dom, but preserving the ↵Manolo Carrasco2011-08-274-162/+154
| | | | method attr(string, boolean) as a way to set boolean attributes like "checked". The method css(HasValue) has to call to css(String, true): issue99
* implement has() methodManolo Carrasco2011-08-271-0/+21
|
* Adding attributes to Function class, so as we can to get the element or ↵Manolo Carrasco2011-08-271-4/+4
| | | | index in any overriden f() method. Now GQuery $() accepts a Function to create a GQuery object, so as we can call $(this) inside a Function
* disable very slow testsManolo Carrasco2011-08-271-1/+5
|
* support for :radio and :checkbox pseudoselectors. Fixes issue_100.Manolo Carrasco2011-08-261-6/+8
|
* Fix attr and removeAttr with checked, Fixes issue97. Thanks to @arny.ok for ↵Manolo Carrasco2011-08-261-0/+6
| | | | the code
* Fix val() methods to behave identical to jquery. This could break apps. ↵Manolo Carrasco2011-08-261-58/+95
| | | | Thanks to @arny.ok for realising the issue an sending code proposals
* Adding a test unit for issue97Manolo Carrasco2011-08-251-1/+10
|
* fix issue 98Julien Dramaix2011-08-241-0/+47
|
* Fix visibility poperty when using stop(). Fix delay calling dequeue twice. ↵Manolo Carrasco2011-08-192-3/+3
| | | | Now named queue do not run dequeue like jquery does. Fix css2xpath when string literals contains # at the begining
* Merged SimpleNamedQueue in QueuePlugin classManolo Carrasco2011-08-011-1/+2
|
* handle empty properties valuesManolo Carrasco2011-07-291-0/+2
|
* implement :hidden and :visible pseudo selectors, fixes issue86Manolo Carrasco2011-07-281-12/+27
|
* Add validation dependencies to avoid warnings when running tests. Change ↵Manolo Carrasco2011-07-153-20/+25
| | | | gotoEnd parameter to boolean like jquery does. When jumtoEnd == true run callback functions. Jaadocs
* fix xpath when tag is omittedManolo Carrasco2011-07-131-1/+1
|
* querySelectorAll does not support numeric ids, so use getElementByIdManolo Carrasco2011-07-131-0/+2
|
* Fix a NPE when passing non-native selectors to xpath engine (fixes issue87). ↵Manolo Carrasco2011-07-081-6/+37
| | | | Validate xpath syntax when generating xpath selectors.
* Fix for Issue 88: $(selector).stop() should immediately stop currently ↵Julien Dramaix2011-06-251-0/+62
| | | | running animation.
* fix issue 81Julien Dramaix2011-06-091-0/+7
|
* - add prop() method (patch from Alessandro Bollini)Julien Dramaix2011-05-281-0/+19
| | | | - add tests
* - Refactor cleanHtmlString method and fix issue 78Julien Dramaix2011-05-261-0/+89
| | | | - add test with html snippet.
* Accept xpath selectors and pass them to the native engine, it should work in ↵Manolo Carrasco2011-05-071-0/+11
| | | | most browsers, IE is not supported
* Fixes special characters when they are in quoted string: fixes issue77Manolo Carrasco2011-05-071-0/+5
|
* Performance: the method element() was called in almost all other gquery ↵Manolo Carrasco2011-05-051-1/+20
| | | | methods, now we maintain an array instead of calculating it each time. Fixed also an issue ind domManip when inserting an existing element in a multielement gquery
* Revert Float classManolo Carrasco2011-05-021-1/+1
|
* Add Float class in order to make gquery compatible with 2.0.0Manolo Carrasco2011-05-021-7/+7
|
* remove printlnManolo Carrasco2011-05-021-1/+0
|