Search Type: Posts; User: crehbein
Search: Search took 0.02 seconds.
-
6 Dec 2010 5:17 PM
Jump to post Thread: TaskBar scrolling for WebDesktop by crehbein
- Replies
- 7
- Views
- 2,945
Hi,
I updated the .zip file in the original post with fixes from takayser. Also, in case you don't like to or... -
19 Nov 2010 9:13 AM
Jump to post Thread: TaskBar scrolling for WebDesktop by crehbein
- Replies
- 7
- Views
- 2,945
Great news, thanks. We changed our design plans and didn't need a web desktop type of environment anymore. We'll probably come back to the original plan at some point though.
-
19 Nov 2010 8:29 AM
Jump to post Thread: TaskBar scrolling for WebDesktop by crehbein
- Replies
- 7
- Views
- 2,945
Thanks! I wrote this against GXT 2.1.3 and haven't tested the code since that version. What version are you running? Can you confirm it works against 2.2 or 2.2.1?
-
12 Nov 2010 8:43 AM
- Replies
- 2
- Views
- 878
You might get a faster response posting in the EXT sections. This is for GXT.
-
3 Nov 2010 6:58 AM
- Replies
- 4
- Views
- 1,284
This problem is most likely due to two relatively close calls to the paging toolbar's load listener defined in the bind() method. A double-load on the grid confuses the enablement state of the...
-
2 Nov 2010 6:29 AM
Jump to post Thread: Horizontal Bar Chart by crehbein
- Replies
- 5
- Views
- 2,111
xAxis.getLabels().setRotation(Rotation.DIAGONAL);
I think that should do the trick, but you have to make sure its called _after_ the labels are created (manually or automatically) or you'll get an... -
2 Nov 2010 5:40 AM
Jump to post Thread: Horizontal Bar Chart by crehbein
- Replies
- 5
- Views
- 2,111
Another option if you can't get it working with steps of 1 is to render the X axis labels diagonally. It should help unclutter the labels. There's a setting for that.
-
26 Oct 2010 6:30 AM
Jump to post Thread: optimization and code splitting by crehbein
- Replies
- 2
- Views
- 1,246
Your best bet is to examine the GWT compilation reports (-compileReport argument to the GWT compiler) and see where you can split code out to reduce the download footprint for certain parts of your...
-
8 Oct 2010 5:53 AM
- Replies
- 12
- Views
- 1,743
Its a lot of code that no one is going to just write for you. If you want hints look at the source for the TabPanel class or my custom desktop taskbar code...
-
22 Sep 2010 5:53 AM
Jump to post Thread: Comet Integration by crehbein
- Replies
- 3
- Views
- 992
We use gwteventservice (http://code.google.com/p/gwteventservice/), it works really well. Never used Grizzly before, but something that's specifically based on GWT RPC might be easier to use.
-
21 Sep 2010 8:12 AM
Jump to post Thread: gRaphael-based Charts? by crehbein
- Replies
- 4
- Views
- 2,173
The same road meaning continue using OFC2 as in GXT 2, or switch to JFreeChart?
-
15 Sep 2010 11:08 AM
- Replies
- 7
- Views
- 2,618
That's cool, as long as I know what to tell our users to expect. A nice feature would let us configure case-sensitivity when creating a StringFilter but I don't see it being that critical.
... -
15 Sep 2010 10:54 AM
- Replies
- 7
- Views
- 2,618
I just synched up and looked at the code (haven't tried running against the new version yet). It looks like it should fix the problem. One quick question, though - is the intention to provide...
-
14 Sep 2010 12:58 PM
- Replies
- 7
- Views
- 2,618
Hi Sven, thanks for looking into this.
What's the change going to be? I sort of assumed the BaseStringFilterConfig is the same for remote/local grids and both would have the same problems. -
14 Sep 2010 11:14 AM
- Replies
- 7
- Views
- 2,618
Hi,
I just noticed there's a bug in the isFiltered() method in BaseStringFilterConfig. isFiltered() is always returning true in a particular case where I'm setting up a filter to include all... -
7 Sep 2010 9:16 AM
- Replies
- 5
- Views
- 1,899
Please do.. :)
-
7 Sep 2010 8:55 AM
- Replies
- 5
- Views
- 1,899
Ah, nevermind its not an error.. I had old ChartModel code still in my jar file with Doubles instead of doubles.
-
7 Sep 2010 8:43 AM
- Replies
- 5
- Views
- 1,899
I find it hard to believe I'm the only one with this problem, but I'm getting the following error message when GWT-compiling and/or running our app using 2.2.0 (the jar downloaded from the Sencha...
-
3 Sep 2010 5:52 AM
Jump to post Thread: Maven for Ext GWT 2.2 by crehbein
- Replies
- 18
- Views
- 4,280
+1 for access via central!
-
1 Sep 2010 8:27 AM
Jump to post Thread: Values over each bar by crehbein
- Replies
- 2
- Views
- 904
I tried every which way to get this to work, but I don't think it can without some additional code. The ChartModel serialized to OFC via GXT doesn't generate the needed JSON object.
The OFC... -
17 Aug 2010 9:20 AM
- Replies
- 8
- Views
- 1,513
Yeah, that's probably the best way to tackle it. Either you return the actual object from the map directly or you have to protect all your map accessors with checks against null - for the api...
-
17 Aug 2010 9:01 AM
- Replies
- 8
- Views
- 1,513
That'll fix it. I just basically wrote the same code. :)
-
17 Aug 2010 8:53 AM
- Replies
- 8
- Views
- 1,513
One more for this thread - I tried using get/setRotationAngle() instead from the Label class, but that results in an NPE due to casting a null Integer object to a native int:
public int... -
17 Aug 2010 8:45 AM
- Replies
- 8
- Views
- 1,513
As a brief followup, getRotation() fails every time its called, not just when there's a null 'rotate' property. The value set to 'rotate' is not the Enum class property, its the text value so...
-
17 Aug 2010 8:37 AM
- Replies
- 8
- Views
- 1,513
Hi,
There's a bug in getRotation() in com.extjs.gxt.charts.client.model.axis.XAxis, specifically the line:
return Rotation.valueOf((String) get("rotate"));
The bug is that if 'rotate' is...
Results 1 to 25 of 27
