- 89be0ef Fixes a bug in ListDataProvider where the old list can push changes to the display even after a new list has been set. by jlabanca@google.com · 15 years ago
- 314f0dc Tweak the styling of the login widget. Dont clobber the rounded by rjrjr@google.com · 15 years ago
- 993706e Fix infinite recursion in JsonRequestProcessor by cromwellian@google.com · 15 years ago
- 49eefec __gwt_ObjectId fix for requests sent to the server. by amitmanjhi@google.com · 15 years ago
- 0b22a38 AbstractEditView now requests all the paths it needs by rjrjr@google.com · 15 years ago
- c56cfcf Fix for bad create requests. Get rid of the squirrely logic in RequestFactory tracking creates. by amitmanjhi@google.com · 15 years ago
- ce6c0fe Cleanups on NameFactory and AbstractClientBundleGenerator. by scottb@google.com · 15 years ago
- 656b4a3 Turn down noise level on AbstractLocalizableImplCreator from INFO to TRACE. by scottb@google.com · 15 years ago
- 90aab6d ClientBundleWithLookup.getResource(String) now uses a HashMap in DevMode. by scottb@google.com · 15 years ago
- 9e4ab53 Added all safehtml packages. by pdr@google.com · 15 years ago
- 78a830a Fix for date serialization problem in JsonRequestProcessor. Datanucleus returns custom subtypes of java.util.Date from the datastore, which causes Dates to be serialized as english strings. by cromwellian@google.com · 15 years ago
- 13e77ca Snip stray debugging println. by rjrjr@google.com · 15 years ago
- ffc5049 Ignoring __gwt_ObjectId in AbstractRequest#processRelated. The __gwt_ObjectId attribute is added by Chrome dev mode to all objects passed between JSNI and Java. by jlabanca@google.com · 15 years ago
- 3252ced Add more tests to check that relationships are persisted correctly. by amitmanjhi@google.com · 15 years ago
- 5e9dcc5 Remove non-determinism in ImageResourceGenerator. by scottb@google.com · 15 years ago
- 659efb9 Always use unix-style line endings in Generators. by scottb@google.com · 15 years ago
- b424818 Snip a stray logging line. by rjrjr@google.com · 15 years ago
- b289ff4 ant test needs these jars by kjin@google.com · 15 years ago
- 5b5bebc Get rid of yellow background during cell selection by unnurg@google.com · 15 years ago
- f3af198 Makes Widget.addDomHandler public, so that helpers can add keyboard handlers to panels without creating new widgets or DOM elements. by gryder@google.com · 15 years ago
- d8c85fd Fixed a bug in JsonRequestProcessor wherein a fast test run could result in failure, because the two Date() calls would return the same millis. by amitmanjhi@google.com · 15 years ago
- d3369bf Allow to keep size of Widget on DeckPanel. by jgw@google.com · 15 years ago
- 6cd80c3 Add <ui:import> to UiBinder to allow access to static fields. by bobv@google.com · 15 years ago
- d2aca23 Introduce an interface for widgets that have a setEnabled method. by jgw@google.com · 15 years ago
- 6d47474 Restores our new friend ValueListBox, and muzzles a couple of his by rjrjr@google.com · 15 years ago
- f1a1aac Fix when update events get fired. by amitmanjhi@google.com · 15 years ago
- 018433a We were broken by both -XdisableClassMetaData and plain old web mode. Fixed. by rjrjr@google.com · 15 years ago
- 4bd5cff Disable failing test until RequestFactory stops leaning on class.getName() by rjrjr@google.com · 15 years ago
- 1d2cf99 Add support for Record types as method params in RequestFactory. Misc by rjrjr@google.com · 15 years ago
- cfef338 Remove the unnecessary suppress warning by amitmanjhi@google.com · 15 years ago
- 8e54f14 rollback of Introduces ValueListBox, due to test failures. by rjrjr@google.com · 15 years ago
- 37470d0 Doing an important TODO in RecordEditActivity. by amitmanjhi@google.com · 15 years ago
- a5b7bd9 Introduces ValueListBox, and uses it in Scaffold to pick employees. by rjrjr@google.com · 15 years ago
- 4cc8911 Fixes the issue that the DVS does not send an object to the server if no by amitmanjhi@google.com · 15 years ago
- daf3048 Irrespective of the return type, all RF methods now go through the valueStore. by amitmanjhi@google.com · 15 years ago
- 7f03cb9 Add partial support for Record types as method parameters by cromwellian@google.com · 15 years ago
- f8c3efd Implemented a smart diff algorithm on the server side to detect actual UPDATES. by amitmanjhi@google.com · 15 years ago
- 38d678d Fix the one spot where we were accidentally relying on a cached record, by rjrjr@google.com · 15 years ago
- bc01744 A disabled test, plus some changes to support the test. by amitmanjhi@google.com · 15 years ago
- dbab79d Adds a markTimeline() method to SpeedTracerLogger. by zundel@google.com · 15 years ago
- 9e9a754 Add DevMode support for the xsiframe linker by unnurg@google.com · 15 years ago
- 553b639 Fix a bug in keyboard navigation by rice@google.com · 15 years ago
- 814ff4b Wrap primitive non-record types in same JSON wrapper used for Records by cromwellian@google.com · 15 years ago
- 9d39238 Improving performance of CellTable. CellTable called StringBuilder#length() before and after rendering each cell to determine if we need to add a blank space to force the cell to render, but length() does an array join on the underlying array in IE, killing performance. Instead, we now put a DIV between the TD and the cell contents, which forces the cell to render. This patch also optimizes some Cells. by jlabanca@google.com · 15 years ago
- 61e552f Re-organized the request factory server code and implemented its first version by amitmanjhi@google.com · 15 years ago
- b050f75 Make the login widget prettier and give dummy authentication better values by unnurg@google.com · 15 years ago
- 2c7bd1f Fix broken client date JSON serialization in RecordJsoImp l by cromwellian@google.com · 15 years ago
- 9ee19ce Allows subclasses to take control of exit points in by rjrjr@google.com · 15 years ago
- 29dcd29 First cut at keyboard navigation for CellTree by rice@google.com · 15 years ago
- 8068da5 Preliminary implementation of the server-side sync method. When a record is to by amitmanjhi@google.com · 15 years ago
- 1fb2368 Makes the terminology used by AbstractListViewAdapter and AbstractPager consistent with HasData. HasData#setRowValues() is now HasData#setRowData(). Also renames ListViewAdapter to ListDataProvider so it is more obvious that the class provides data to a Cell widget. The term "View" has been replaced by "Display" (for pagers) and "DataDisplay" (for data providers). "View" insinuates an MVC design, but in our case the widgets do have some logic, so we chose the more generic term "Display" to describe them. This patch looks huge, but 95% of it is a bunch of renames. by jlabanca@google.com · 15 years ago
- 5a1b83d Public: Move the validation metadata classes to client/metadata. by nchalko@google.com · 15 years ago
- 43b0de2 Fix relation-id bug using wrong instance by cromwellian@google.com · 15 years ago
- f50cc1d Introduces History integration, and takes the first steps toward the by rjrjr@google.com · 15 years ago
- ca5a60b Removed use of a global table (typeIdArray) for testing castability between types. This information is now stored per class prototype as a castableMap. by jbrosenberg@google.com · 15 years ago
- a01bbf4 Re-rolling r8522: For synthetic this refs, use params rather than fields while in constructors by scottb@google.com · 15 years ago
- c2439e4 Submitting a fix for the NPE introduced by by amitmanjhi@google.com · 15 years ago
- bb37882 Add mouse position information to ClickEvent and DoubleClickEvent. Manually verified that this by fredsa@google.com · 15 years ago
- 3d1c304 Adds partial support for related fields to RequestFactory. Right now, getters of such fields always return null. by cromwellian@google.com · 15 years ago
- b6b81be Split BigDecimal/BigInteger tests out of EmulSuite. by jat@google.com · 15 years ago
- 65bea9e Incorporated Ray's feedback on http://code.google.com/p/google-web-toolkit/source/detail?r=8533 by amitmanjhi@google.com · 15 years ago
- 40adf9c Removes vestiges of TypeOracle support for local types. by scottb@google.com · 15 years ago
- e2918ba Override annotation and formatting by amitmanjhi@google.com · 15 years ago
- b1077dc Public: Fix gwt compile errors in javax.validation. by nchalko@google.com · 15 years ago
- 5817cf8 Fix the equals method for RecordKey. Forgot to make this change in the just by amitmanjhi@google.com · 15 years ago
- 27b8c08 Fixed the create bug that was being caused by server ids and futureIds by using the futureId field in RecordKey and RecordImpl by amitmanjhi@google.com · 15 years ago
- 6aff3fc Adds (unused by this patch, but needed in forthcoming history code) by rjrjr@google.com · 15 years ago
- 07a8540 This patch allow empty row data lists that start on the pageStart to pass through the AbstractListViewAdapter and HasDataPresenter down to the HasData implementation (such as CellList). This ensures that Cell Widgets clear the view when the row count goes to 0. Before this change, setting the rowCount to zero would redraw with the empty list, but the empty list was considered "out of range." by jlabanca@google.com · 15 years ago
- 35069b7 Extends DynaTableRF with a client call to Person#persist. by rjrjr@google.com · 15 years ago
- de99bd3 Removes CompilationUnit.isCompiled(). by scottb@google.com · 15 years ago
- ef5cb97 Rollingback r8521: Lazily generate LocaleInfoImpl (rebase from superdevmode) since htmlunit is failing. by conroy@google.com · 15 years ago
- baf5542 Lazily generate LocaleInfoImpl (rebase from superdevmode) by conroy@google.com · 15 years ago
- 2778c04 Add @Override tags in order to be able to enable Eclipse warnings without being drowned by rice@google.com · 15 years ago
- ad28ffa More DeltaValueStore cleanup. by amitmanjhi@google.com · 15 years ago
- 77d1073 Enables setter methods to be directly called on Record/proxy objects, instead of by amitmanjhi@google.com · 15 years ago
- 860d8b4 PUBLIC: Fix compile errors in user/build.xml compile.tests target. by nchalko@google.com · 15 years ago
- 262d04d Revert DeferredCommand deprecation due to reports of test failures. by bobv@google.com · 15 years ago
- b73a0ec Better error message on garbage in text. by rjrjr@google.com · 15 years ago
- c77d572 ListView and PagingListView are now HasData, with a parent interface of HasRows. ListView.Delegate/Pager have been replaced by a combination of HasRows#addRangeChangeHandler() and HasRows#addRowCountChangeHandler(). Pagers (note that there is no longer a Pager interface) no longer take views in their constructors. Instead, they are passed into AbstractPager#setView(), making them more UiBinder friendly. CellList and CellTable now have a common superclass AbstractHasData, which makes it much easier for us and users to create new Cell based widgets. by jlabanca@google.com · 15 years ago
- c3dca8b Recommiting the new CrossSiteIframeLinker. by spoon@google.com · 15 years ago
- 026e8ed Deprecate the DeferredCommand API. Patch by: bobv Review by: rjrjr by bobv@google.com · 15 years ago
- c67f5c8 Public: Simple implementation of ConstraintViolation, ConstraintDescriptor, Path and Node. by nchalko@google.com · 15 years ago
- 7f8da95 Refactor SelectionModel.SelectionEvent into its own class with associated Handler by rice@google.com · 15 years ago
- 322749a Fix datatype renderers to handle nulls properly for some primitive by rjrjr@google.com · 15 years ago
- bd0f8a1 Treat undefined Record properties on JSOs as nulls by cromwellian@google.com · 15 years ago
- bbaa307 Remaining changes to bikeshed/scaffold app as a result of using Long ids instead of String ids. by amitmanjhi@google.com · 15 years ago
- 9760fb8 Removed the RequestDataManager class that is no longer used. by amitmanjhi@google.com · 15 years ago
- 850897c Fixing a couple of typos in JavaDoc. by jlabanca@google.com · 15 years ago
- e7a3627 "De-bounce" built-in selection models by rice@google.com · 15 years ago
- 5e4dfd1 We write to JDK 1.5, so you can't put @Override when you implement by rjrjr@google.com · 15 years ago
- d7b26f6 Add missing .css files for CellTable by rice@google.com · 15 years ago
- 4640f11 Another step towards making instance methods real. The interface on the client is pretty much what it needs to be. by amitmanjhi@google.com · 15 years ago
- eb3e87a Public: Add default validators for the standard constraints. by nchalko@google.com · 15 years ago
- c980e2f Fix RPC charset parameter tests to be consistent with ServletResponse#getCharacterEncoding(), by fredsa@google.com · 15 years ago
- 8268509 Removed trim in ValueBoxBase, forcing parsers to handle trim()ing. by pdr@google.com · 15 years ago
- 5fd6191 First pass at keyboard navigation (currently only for CellTable) by rice@google.com · 15 years ago
- 7a10096 Moved the create method from DeltaValueStore, used Long futureIds. Deleted ValueStore interface and made ValueStoreJsonImpl non-public. by amitmanjhi@google.com · 15 years ago
- 4beb3d2 Allowing DefaultSuggestionDisplay to stay open even when empty (no suggestions). by portersi@google.com · 15 years ago
- bcba2ae Fix support for null fields and Boolean type types in RequestFactory. by cromwellian@google.com · 15 years ago
- dbca117 Add logging to scaffold and expenses apps by unnurg@google.com · 15 years ago