Search Type: Posts; User: mindstream
Search: Search took 0.02 seconds.
-
26 Jun 2009 9:59 AM
- Replies
- 7
- Views
- 2,028
For those of us counting on Slate, this is important. Is Slate being dropped from 2.0? If not, will it be ready for Release?
Thanks. -
14 Nov 2008 7:56 AM
- Replies
- 0
- Views
- 775
Right now the setHideTrigger is a pre-render setting. It would be really useful
if I could hide and show the trigger dynamically. I have a custom widget that behaves like a combo box or a basic... -
6 Nov 2008 10:45 AM
- Replies
- 1
- Views
- 850
I also noticed that if you use, for instance, the down arrow once press at a time, when you get to the bottom of the visible list, the data only scrolls one item and the newly selected item is not...
-
29 Oct 2008 4:18 PM
Jump to post Thread: File Upload in the roadmap by mindstream
- Replies
- 0
- Views
- 765
Darrell,
Can you share a ballpark estimate on when File Upload will be available?
Thanks, and thanks for the excellent work.
Rob -
29 Oct 2008 4:07 PM
- Replies
- 1
- Views
- 850
When you use the up or down key to scroll through the contents of a ComboBox, only one event is being processed. Up until version 1.1 (I'm not sure about 1.1.1), if you held down the key, the...
-
11 Oct 2008 10:21 AM
Jump to post Thread: anyone doing a gxt canvas? by mindstream
- Replies
- 4
- Views
- 2,554
Will the new dnd functionality planned for 1.2 allow for handling of drops from browser initiated drags? e.g. Since the browser already lets me drag a URL, will I be able to listen for drops of...
-
11 Oct 2008 10:17 AM
Jump to post Thread: anyone doing a gxt canvas? by mindstream
- Replies
- 4
- Views
- 2,554
Under drag and drop, the roadmap specifies a few types, including "general". Hmmm..
I'm hoping it means data drag and drop instead of widget drag and drop. I'd like to have a transferable type... -
23 Sep 2008 8:25 AM
Jump to post Thread: [FIXED] Multiple KeyNav events by mindstream
- Replies
- 10
- Views
- 2,468
Darrell,
Thanks for chasing this one.
Rob -
23 Sep 2008 5:57 AM
Jump to post Thread: [FIXED] Multiple KeyNav events by mindstream
- Replies
- 10
- Views
- 2,468
Sorry about the lack of indentation.
-
23 Sep 2008 5:57 AM
Jump to post Thread: [FIXED] Multiple KeyNav events by mindstream
- Replies
- 10
- Views
- 2,468
public class webappEntryPoint implements EntryPoint {
class MyCombo extends ComboBox {
public MyCombo() {
super();
new KeyNav(this) {
... -
23 Sep 2008 5:37 AM
Jump to post Thread: [FIXED] Multiple KeyNav events by mindstream
- Replies
- 10
- Views
- 2,468
class MyCombo extends ComboBox {
public MyCombo() {
super();
new KeyNav(this) {
public void onEnter(ComponentEvent ce) {
}
... -
23 Sep 2008 4:32 AM
Jump to post Thread: [FIXED] Multiple KeyNav events by mindstream
- Replies
- 10
- Views
- 2,468
Maybe I need some education...
I'm seeing this in a subclass of TriggerField, where there is an internal
KeyNav instance: new KeyNav(this)
Are the multiple events from the internal hierarchy... -
23 Sep 2008 4:25 AM
Jump to post Thread: [FIXED] Multiple KeyNav events by mindstream
- Replies
- 10
- Views
- 2,468
Darrell,
I'm not talking about multiple listeners getting called. I'm saying the same listener, a single
instance of KeyNav, is getting event handler methods invoked more than once for the same... -
22 Sep 2008 1:23 PM
Jump to post Thread: [FIXED] Multiple KeyNav events by mindstream
- Replies
- 10
- Views
- 2,468
When moving from 1.04 to 1.1 I noticed that KeyNav event handlers are now called
twice. I know I can call stopEvent, but why is this happening? It doesn't appear to be totally consistent between... -
19 Sep 2008 12:01 PM
- Replies
- 1
- Views
- 1,037
I really like the new Portal/Portlet functionality in 1.1. Really nice.
Is there a way to specify that a portlet can't be moved? I'd like to be
able to pin a portlet in place.
Maybe... -
8 Sep 2008 8:16 AM
Jump to post Thread: getting onBrowserEvent called? by mindstream
- Replies
- 2
- Views
- 4,435
For now I've gone back to the GWT HTML widget, which does the right thing with browser events. But I would prefer to use the Gxt version if I could understand what the issue is.
-
8 Sep 2008 7:19 AM
Jump to post Thread: getting onBrowserEvent called? by mindstream
- Replies
- 2
- Views
- 4,435
I have a subclass of DataView that calls sinkEvents(Event.ONCLICK) in its constructor, and I get the onBrowserEvent calls as expected.
But I tried the same technique with a subclass of... -
3 Sep 2008 3:22 AM
- Replies
- 4
- Views
- 2,724
Thanks.
-
2 Sep 2008 1:33 PM
- Replies
- 4
- Views
- 2,724
I don't want to have to modify css-all either, and this is causing me a lot of grief. Is there any way to fix this?
-
12 Aug 2008 1:33 PM
Jump to post Thread: [FIXED] scrollIntoView by mindstream
- Replies
- 7
- Views
- 2,502
A very critical part of this was missing. I looked at the ComboBox code to figure it out. The base scrollIntoView code does not do the job. I had to override that method in my DataView in order to...
-
12 Aug 2008 12:45 PM
Jump to post Thread: [FIXED] scrollIntoView by mindstream
- Replies
- 7
- Views
- 2,502
There is no way to set the scroll mode on a DataView. I have the scroll mode set to Scoll.Auto on the parent LayoutContainer, and I am calling scrollIntoView on the DataView instance, passing the...
-
8 Aug 2008 4:50 PM
Jump to post Thread: scrollIntoView() for Trees by mindstream
- Replies
- 2
- Views
- 1,249
What you describe sounds right. Although ComboBox seems to work now with scrollIntoView, I don't think a DataView inside an auto scroll container is working
correctly with scrollIntoView. I... -
8 Aug 2008 4:47 PM
Jump to post Thread: [FIXED] scrollIntoView by mindstream
- Replies
- 7
- Views
- 2,502
Seems to work fine in 1.0.2 for ComboBox. But it doesn't seem to work
when there's simply a DataView in a LayoutContainer with scroll mode
set to AUTO.
Sorry I didn't provide code -- but I'm... -
22 Jul 2008 2:45 PM
Jump to post Thread: [FIXED] scrollIntoView by mindstream
- Replies
- 7
- Views
- 2,502
Thanks Darrrell
-
22 Jul 2008 6:42 AM
Jump to post Thread: [FIXED] scrollIntoView by mindstream
- Replies
- 7
- Views
- 2,502
scrollIntoView in a DataView doesn't work. Easy to see this in a ComboBox where the popup contains a scroll bar. As you press the down arrow key, the next item gets selected but it'll go right past...
Results 1 to 25 of 32
