Search Type: Posts; User: altmayer
Search: Search took 0.03 seconds.
-
30 Nov 2011 7:17 AM
- Replies
- 1
- Views
- 877
Hi,
it seems that ist was my fault (this time ;)). The z-index of the grid header was set to 1 for other reasons. So the splitter was under the header and came only to front using the splitter in... -
30 Nov 2011 12:24 AM
- Replies
- 1
- Views
- 877
[2.2.3] is the correct used version
Hi there,
the default setting for grid column resizing behavior is true. So it should be possible to resize columns in the rows AND in the header without... -
22 Sep 2011 10:27 PM
- Replies
- 0
- Views
- 484
Hi,
I was just reading the release notes for GXT 2.2.5
in the fixed bug list I see some fixed issues for the row editor ("Fixed several issues in RowEditor"). What exactly does that mean? Because... -
3 Aug 2011 9:04 AM
- Replies
- 3
- Views
- 1,419
Thank you very much. This is a good idea.
Maybe it will be difficult to be able to listen to the scrollbar event and hide the scrollbar itself at the same time.
I'll definitely try this out.... -
1 Aug 2011 6:14 AM
- Replies
- 3
- Views
- 1,419
Hi,
assume you have a TextArea in which the user is typing something. At some point, the text will be too much to fit into the text area.
I do not want to use scroll bars... so is there a neat... -
19 Jul 2011 3:18 AM
- Replies
- 6
- Views
- 1,587
You are right. It works as expected. At the beginning I used addSelectionListener instead of addListener which did not produce the desired behavior.
For an gwt element like Anchor I am using
... -
19 Jul 2011 1:59 AM
- Replies
- 1
- Views
- 925
Is there any specific reason you want to use HBoxLayout instead of TableLayout?
You could also consider ColumnLayout. However, ColumnLayout only worked for my purposes (I wanted to resize... -
19 Jul 2011 1:18 AM
- Replies
- 6
- Views
- 1,587
This could be an option.
However, this is not exactly the desired behavior. The element (button, anchor whatever) should be clickable - no matter if the panel is the selected one or not, and, as I... -
18 Jul 2011 11:54 PM
- Replies
- 6
- Views
- 1,587
using the method stopEvent in the onClick method of the button would work like
protected void onClick(ComponentEvent ce) {
ce.stopEvent();
super.onClick( ce );
}
But not every... -
18 Jul 2011 10:48 PM
- Replies
- 6
- Views
- 1,587
btw: calling the stopEvent() method of the event did not work.
The onClick method of the content panel is still called. -
18 Jul 2011 10:32 PM
- Replies
- 6
- Views
- 1,587
Suppose I have several objects of the type ContentPanel which are used inside a container with AccordionLayout.
Each ContentPanel object gets a button at the upper right corner via
... -
10 Jun 2011 4:07 AM
- Replies
- 1
- Views
- 784
I used RowLayout in many of my gui screens. In general, choosing the right height parameters was always not easy. With Orientation.HORIZONTAL this is even worse.
So for now I try to avoid using... -
6 Jun 2011 12:33 AM
- Replies
- 1
- Views
- 784
Hi,
suppose you have got a layout container with vertical layout. In it, you create a layout container with Orientation.HORIZONTAL.
public class UploadFileWidget{
public... -
24 May 2011 10:41 PM
- Replies
- 0
- Views
- 1,072
Hi,
I think this is more a suggestion for a future Ext GWT version rather than a help topic. Whatever:
I stumbled across this "problem" when I started to think about automated UI tests for my... -
23 May 2011 6:52 AM
- Replies
- 4
- Views
- 1,767
I wanted to add that this problem haunted me again.
Because there were several different cases in which edtor values could be filled, in some cases I got class cast exceptions when I clicked a row... -
9 May 2011 6:49 AM
- Replies
- 4
- Views
- 1,767
Yes, you are right. For some dumb reason, I had the trigger action set in my factory class that creates combo boxes, but not at the place where I created the combobox by hand. Thanks very much.
To... -
9 May 2011 3:40 AM
- Replies
- 4
- Views
- 1,767
Hi,
This is maybe something similar to another thread I have posted, but it is more connected with the above mentioned methods.
since I have found only examples with SIMPLEComboBox so far, I... -
9 May 2011 1:23 AM
- Replies
- 3
- Views
- 4,818
Hi,
I have got general problems with correctly implementing the preProcessValue and postProcessValue methods.
How are those to be implemented? The examples I found only had a SIMPLEComboBox but... -
8 May 2011 10:42 PM
- Replies
- 1
- Views
- 1,007
ok,
so far, I am developing a solution. But I really thought, these kind of things were very common "problems" for which there is an elegant solution.
My current solution is to involve the... -
6 May 2011 12:06 PM
- Replies
- 1
- Views
- 1,007
Hello,
I want to preselect a combobox with values from the currently selected row data in a grid.
I am using a RowEditor with an overridden onRowClick method. Furthermore, I have a class called... -
5 May 2011 4:07 AM
- Replies
- 1
- Views
- 889
I concluded that in the current project situation I split up the name column into two. This means using seperate first name and last name columns and seperate input fields.
Rewriting the complete... -
4 May 2011 6:11 AM
- Replies
- 1
- Views
- 889
Hi all,
in my current project there is a grid (with row editor) with a name column. The name column shows the name of a user in the way [last name, first name]. When I click on a row, the row... -
29 Apr 2011 4:24 AM
- Replies
- 2
- Views
- 658
Ok, thanks so far.
In which way will it be solved? Will the new RowEditor compute the position itself, or will there be a possibilty to set some kind of offset as suggested? -
29 Apr 2011 3:35 AM
- Replies
- 2
- Views
- 658
Hi,
not sure whether this can be called a bug. Maybe the RowEditor can be adjusted.
Problem description:
when using a RowEditor with a Grid and you click on one row, the editor panel appears... -
28 Apr 2011 12:55 AM
- Replies
- 0
- Views
- 451
Hi,
I am relatively new to GWT, so I still often have no clue how to add event listeners. Alas, this was somehow easier in good old swing awt days. There seem to be so many ways to add events, but...
Results 1 to 25 of 28
