Search Type: Posts; User: meliniak
Search: Search took 0.02 seconds.
-
11 Mar 2011 3:05 AM
- Replies
- 2
- Views
- 1,322
That might be the right guess. I will give it a try, thx.
-
11 Mar 2011 1:42 AM
- Replies
- 2
- Views
- 1,322
Affected browsers: IE & Chrome. FF is OK.
The problem concerns the alignment of the datepicker and the combobox arrow. Those are improperly displayed on left side of the outer components.
It... -
9 Mar 2011 1:32 AM
- Replies
- 1
- Views
- 1,603
I'm using a TreeStore. When calling TreeStore.add(ModelData, boolean) and there are filters applied to the store, I keep getting following exception:
java.lang.IndexOutOfBoundsException: Index:... -
7 Mar 2011 4:45 AM
- Replies
- 1
- Views
- 1,111
I'm using gxt-2.2.1
-
7 Mar 2011 4:44 AM
- Replies
- 1
- Views
- 1,111
Can't tell if this is an issue for sure, correct me if I am wrong.
I'm using a TreeGrid with multi selection mode, I've added BeforeSelect listener to it. When calling getSelectedItems there, I... -
6 Feb 2011 7:43 AM
Jump to post Thread: How to let the ListView scroll? by meliniak
- Replies
- 4
- Views
- 1,894
Following code helped for me:
docListView.setStyleAttribute("overflow-y", "scroll"); -
28 Jan 2011 1:45 AM
Jump to post Thread: How to let the ListView scroll? by meliniak
- Replies
- 4
- Views
- 1,894
Sven, I can neither get scrollbars working in CheckBoxListView. Is there anything to remember about when adding this widget (e.g. layouts, autoWidth/height)?
-
27 Jan 2011 4:17 AM
- Replies
- 18
- Views
- 4,739
In case anyone is interested, here is the way I did this. I simply overrided refresh method:
@Override
public void refresh() {
super.refresh();
if (rendered) {
NodeList<Element>... -
27 Jan 2011 12:58 AM
- Replies
- 18
- Views
- 4,739
I will stick to this thread as I have a similar question. How would you disable single checkbox, or single entry, depending on the values of properties of the ModelData instances? Any ideas?
-
21 Jan 2011 12:59 AM
- Replies
- 3
- Views
- 1,311
Thx, helpful answer, as usual. By the latest gxt code you mean svn? It's not released yet? Or there is any jar to download?
-
20 Jan 2011 2:01 AM
- Replies
- 3
- Views
- 1,311
I'm having an issue with removing an element from a TreeGrid and it seems like a bug. Here is a stack trace:
java.lang.IndexOutOfBoundsException: Index: 1, Size: 1
at... -
12 Jan 2011 2:17 AM
- Replies
- 1
- Views
- 996
If anyone is interested, here is my solution I've finally figured out. In my case it was about having comboboxes in grid filled with i18ned enums, i.e. enum values should be translated back and...
-
7 Jan 2011 6:06 AM
- Replies
- 1
- Views
- 996
I'm adding a column to a grid that is edited with combobox. I want to have these combobox fields formatted, so I'm setting a custom property editor. However it seems that the property editor methods...
-
4 Jan 2011 6:58 AM
- Replies
- 2
- Views
- 769
thanks.
-
3 Jan 2011 4:56 AM
- Replies
- 2
- Views
- 769
There are 3 places in my app that I use very similar grids, with same columns and so on. All of them are set up similarly, or at least it seems so.
Two of them worked fine, but the 3rd one didn't.... -
7 Dec 2010 3:05 AM
Jump to post Thread: treegrid NPE by meliniak
- Replies
- 4
- Views
- 988
This might be a useful hint, thanks again.
-
7 Dec 2010 2:34 AM
Jump to post Thread: treegrid NPE by meliniak
- Replies
- 4
- Views
- 988
What a guess :) Indeed, correct. Removing the overridden equals method fixed the thing. Thanks for your help and quick reply, it saved me a lot of time.
-
6 Dec 2010 8:32 AM
Jump to post Thread: treegrid NPE by meliniak
- Replies
- 4
- Views
- 988
I came across an error that seems to be hard to overcome. I'm using 2.2.1 version.
I'm using TreeGrid in my app. On selecting any of the rows, appropriate ModelData instance is bound to the form.... -
3 Dec 2010 1:53 AM
Jump to post Thread: DND cancel drop by meliniak
- Replies
- 2
- Views
- 1,473
Thanks for the detailed reponse, I will give it a try.
-
29 Nov 2010 4:10 AM
Jump to post Thread: DND cancel drop by meliniak
- Replies
- 2
- Views
- 1,473
Hi there,
I need to code such basic feature: user drags a node in TreeGrid, when it's dropped, user is asked via dialog window to confirm the operation or to reject it.
I can't find any way to... -
17 Nov 2010 8:44 AM
Jump to post Thread: TreeGrid DND source by meliniak
- Replies
- 2
- Views
- 578
I did it by myself with the following code:
TreeGridDragSource dragSource = (TreeGridDragSource) dnde.getDragSource();
@SuppressWarnings("unchecked")
List<TreeStoreModel> dataList =... -
17 Nov 2010 7:53 AM
Jump to post Thread: TreeGrid DND source by meliniak
- Replies
- 2
- Views
- 578
The problem is about obtaining the node that is being dragged in Events.Drop event handler. One can get the target node with the following code:
Element targetEl = dnde.getTarget();... -
16 Nov 2010 2:37 AM
- Replies
- 6
- Views
- 1,979
One more thing, can't find the method to set the rows' height, where is it?
-
16 Nov 2010 2:15 AM
- Replies
- 6
- Views
- 1,979
I've been struggling with the very same problem until I found this thread. Could you sven explain why auto sizing affects TreeGrid that way? Is this behavior mentioned somewhere? I just want to avoid...
-
4 Nov 2010 4:24 AM
- Replies
- 3
- Views
- 805
Do you mean just code snippets or whole eclipse project?
Results 1 to 25 of 37
