aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/ui
Commit message (Collapse)AuthorAgeFilesLines
...
* enabled multiselect in Select component (Should use ListSelect, but for ↵Matti Tahvonen2008-03-051-4/+5
| | | | | | backwards compatibility) svn changeset:3970/svn branch:trunk
* setVisibleItemProperties() did not consider itemDataSource, fixes #139Marc Englund2008-03-051-1/+4
| | | | svn changeset:3969/svn branch:trunk
* fixed javadocMatti Tahvonen2008-03-041-10/+1
| | | | svn changeset:3964/svn branch:trunk
* Refactored CustomComponent. Fixed possible NPE in Abstract component. ↵Matti Tahvonen2008-03-042-446/+102
| | | | | | Optimization for AbstractComponent. svn changeset:3963/svn branch:trunk
* Fixed one ("filtering") regression. Marc Englund2008-03-031-0/+20
| | | | | | Implemeted "emptyText" functionality (weekend coding), but the code is disabled (commented out) serverside - #1455 will enable it. svn changeset:3956/svn branch:trunk
* replacing selected tab no longer changes to first tab, fixes #591Marc Englund2008-02-291-0/+6
| | | | svn changeset:3949/svn branch:trunk
* Quite a bit of changes: added possibility to better detect _why_ upload ↵Marc Englund2008-02-271-11/+99
| | | | | | | | failed. Tested all events, should fix #174 Javadoc still contains mention of ProgressEvent, that does not exist. svn changeset:3934/svn branch:trunk
* fixes rather fatal expand layout bug (expanded element reference lost on ↵Matti Tahvonen2008-02-251-4/+6
| | | | | | each removeComponent call) svn changeset:3914/svn branch:trunk
* getSelect() removed, getTabSheet() added, fixes #832Marc Englund2008-02-251-3/+3
| | | | svn changeset:3911/svn branch:trunk
* Javadoc addition, fixes #95Marc Englund2008-02-251-3/+5
| | | | svn changeset:3909/svn branch:trunk
* ENHANCEMENT: SplitPanel.setLocked(boolean locked) - allows locking the ↵Jouni Koivuviita2008-02-251-0/+29
| | | | | | splitpanel handle (prevents user from dragging it). svn changeset:3907/svn branch:trunk
* Fixed typo: setHeight(String width) -> setHeight(String height)Jouni Koivuviita2008-02-181-2/+2
| | | | svn changeset:3818/svn branch:trunk
* fixed some server side selection change issueMatti Tahvonen2008-02-121-0/+9
| | | | svn changeset:3774/svn branch:trunk
* fixed first visible to me more saneMatti Tahvonen2008-02-121-3/+3
| | | | svn changeset:3773/svn branch:trunk
* sanity checkMatti Tahvonen2008-02-121-0/+3
| | | | svn changeset:3772/svn branch:trunk
* pageBuffer reset on editability changeMatti Tahvonen2008-02-111-0/+1
| | | | svn changeset:3770/svn branch:trunk
* table: forcing pageBuffer flush on some events just to be sure of getting ↵Matti Tahvonen2008-02-111-2/+14
| | | | | | updates + fixed bug where newItemId in itemsetchanged event compared badly with rendered indexes default value svn changeset:3769/svn branch:trunk
* workaround for IScrollTable bug to server side paint methodMatti Tahvonen2008-02-111-0/+6
| | | | svn changeset:3768/svn branch:trunk
* small fixMatti Tahvonen2008-02-111-2/+3
| | | | svn changeset:3767/svn branch:trunk
* trying to fix table issuesMatti Tahvonen2008-02-111-8/+47
| | | | svn changeset:3766/svn branch:trunk
* table now refreshes its contents and does component attaching etc in right ↵Matti Tahvonen2008-02-081-223/+243
| | | | | | place (not during paint phase) svn changeset:3756/svn branch:trunk
* Deprecated Application.setFocusedComponent and Application.consumeFocus(), ↵Jani Laakso2008-02-083-34/+26
| | | | | | | | this design flaw will be fixed in later releases. Upload setFocus() now works even if it is not yet attached. svn changeset:3755/svn branch:trunk
* Fixed #1393 (Focusable has id which is obsolete)Jani Laakso2008-02-087-170/+32
| | | | svn changeset:3752/svn branch:trunk
* Not painting table if only first visible info is updatedMatti Tahvonen2008-02-071-3/+4
| | | | svn changeset:3741/svn branch:trunk
* extracted alignments and spacing to layouts subinterfacesMatti Tahvonen2008-02-071-28/+105
| | | | svn changeset:3739/svn branch:trunk
* extracted alignments and spacing to layouts subinterfacesMatti Tahvonen2008-02-073-111/+132
| | | | svn changeset:3723/svn branch:trunk
* version since fixMatti Tahvonen2008-02-061-1/+1
| | | | svn changeset:3719/svn branch:trunk
* 1. Removed obsolete dependency framework methods and interface definitions.Jani Laakso2008-02-066-62/+22
| | | | | | | | 2. "Undeprecated" reflection based listeners, we still wish to support these. But I noted on javadoc that using these methods is discouraged and suggested better methods. svn changeset:3718/svn branch:trunk
* rename target width attribute in uidl to avoid collapsing with Sizeable widthMatti Tahvonen2008-02-051-2/+2
| | | | svn changeset:3712/svn branch:trunk
* alignments painting for GridLayoutMatti Tahvonen2008-02-051-0/+22
| | | | svn changeset:3711/svn branch:trunk
* Changed addComponent() a bit: must call super, can't call setParent() directly.Marc Englund2008-02-011-2/+4
| | | | svn changeset:3706/svn branch:trunk
* fixes #1036 and removes some obsolete codeMatti Tahvonen2008-02-011-1/+17
| | | | svn changeset:3704/svn branch:trunk
* changed order of component adding, in case super.addComponent() throws...Marc Englund2008-02-011-3/+3
| | | | svn changeset:3703/svn branch:trunk
* Simplified; assume component's parent is always ComponentContainer.Marc Englund2008-02-011-8/+2
| | | | svn changeset:3701/svn branch:trunk
* AbstractComponent.setParent(parent) cannot be called if component already ↵Marc Englund2008-02-012-2/+29
| | | | | | | | | | | | has parent, unless the new parent is null (unsetting parent). AbstractComponentContainer.addComponent(component) removes the component from it's previous ComponentContainer if needed (moves component), or throws if the component can't be removed. Fixes #1137 All components that contain other components should implement ComponentContainer for this to be perfect (e.g CustomComponent, Table) svn changeset:3698/svn branch:trunk
* Java 1.4-ifiedMarc Englund2008-02-011-1/+1
| | | | svn changeset:3694/svn branch:trunk
* DeprecatedJani Laakso2008-02-013-1/+11
| | | | | | | | | | * public Button(String caption, Object target, String methodName) * public CheckBox(String caption, Object target, String methodName) Reason: Using this method is discouraged because it cannot be checked during compilation. Java reflect is done through string variable. Error prone and this does not survive re-factoring (=> applications brake). Typo fixes. svn changeset:3693/svn branch:trunk
* fixes #1078Matti Tahvonen2008-02-011-15/+70
| | | | svn changeset:3692/svn branch:trunk
* ComboBox newItemsAllowed=false by default, to avoid mistakes (#1374)Marc Englund2008-02-011-8/+9
| | | | | | May affect applications! Must be prominently noted in changes -file. svn changeset:3691/svn branch:trunk
* Fixed #588 (another partial fix for larger listener problems). AbstractSelectJani Laakso2008-01-311-4/+5
| | | | | | * itemSetEventListener and propertySetEventListener contains only unique listeners, hence duplicates are not allowed svn changeset:3684/svn branch:trunk
* Fixed #588 (partially, other places still need fixes)Jani Laakso2008-01-311-0/+4
| | | | | | | | | | | | | | | | | EventRouter * is now thread safe * listenerList contains unique listeners, duplicates are not allowed ListenerMethod * implemented proper equals and hashCode methods AbstractComponent * @deprecated Use {@link #addListener(Class, Object, Method)} or {@link #addListener(com.itmill.toolkit.ui.Component.Listener)} instead. Using this method is discouraged because it cannot be checked during compilation. svn changeset:3681/svn branch:trunk
* setWidth(String) and setHeight(String) methods added to SizeableMatti Tahvonen2008-01-312-0/+55
| | | | svn changeset:3680/svn branch:trunk
* Added one comment.Marc Englund2008-01-301-0/+2
| | | | svn changeset:3672/svn branch:trunk
* Selects now listen for changes to item/property as appropriate. Version 1. ↵Marc Englund2008-01-304-2/+109
| | | | | | Table still needs work (might 'leak' listeners as it is now) svn changeset:3671/svn branch:trunk
* better toString for Table (no more null's in d debugger)Matti Tahvonen2008-01-301-0/+9
| | | | svn changeset:3667/svn branch:trunk
* fixes #97Matti Tahvonen2008-01-291-13/+38
| | | | svn changeset:3666/svn branch:trunk
* better docMatti Tahvonen2008-01-291-2/+1
| | | | svn changeset:3665/svn branch:trunk
* fixes #1355Matti Tahvonen2008-01-291-1/+6
| | | | svn changeset:3664/svn branch:trunk
* setWidth/Height now method in SizeableMatti Tahvonen2008-01-281-28/+0
| | | | svn changeset:3663/svn branch:trunk
* component implements sizeable and simple general terminal implementationMatti Tahvonen2008-01-2811-299/+211
| | | | svn changeset:3662/svn branch:trunk