Search Type: Posts; User: LINEMAN78
Search: Search took 0.02 seconds.
-
1 Sep 2010 8:05 AM
Jump to post Thread: GWT Regex by LINEMAN78
- Replies
- 2
- Views
- 2,669
Depends on how complicated you want to make it. This is the simple solution I am using, it simply returns an array of the groups:
private native JsArrayString match(String searchString, String... -
27 Mar 2009 4:40 PM
Jump to post Thread: GWT Regex by LINEMAN78
- Replies
- 2
- Views
- 2,669
I know this is probably a stupid question, but I cannot find a solution anywhere. Is there a way to perform regex on a string and have access to the groups? I really don't want to have to make a...
-
9 Mar 2009 10:37 AM
Jump to post Thread: GXT and inheriting sizes by LINEMAN78
- Replies
- 0
- Views
- 713
I have been working on a pure GXT app for a while and have not had to deal with a lot of integration with standard html capabilities. I am now trying to integrate parts of our app into the Liferay...
-
23 Feb 2009 10:43 AM
Jump to post Thread: BorderLayout help for 1.2.3 by LINEMAN78
- Replies
- 0
- Views
- 544
In 1.2.3 the style 'display: block;' was added to the sections of BorderLayout and I was wondering if there is an easy way to remove this. I only need to remove it from my south panel, so I was...
-
18 Feb 2009 12:38 PM
Jump to post Thread: Transparent BG on ContentPanel by LINEMAN78
- Replies
- 4
- Views
- 1,494
I don't remember how I did it, so here is my constructor of my class that extends LayoutContainer that is added to a Viewport that has been set to FitLayout
setLayout(new BorderLayout());
... -
17 Feb 2009 9:26 AM
Jump to post Thread: redraw issue by LINEMAN78
- Replies
- 17
- Views
- 3,086
I would suggest updating your GXT version. The version you are using has layoutOnAttach disabled, which caused problems for many people and was re-enabled in the next version.
-
28 Jan 2009 12:14 PM
- Replies
- 5
- Views
- 2,014
Unfortunately I cannot post the code because it is proprietary, but I will try to give you enough information to replicate.
FusionChartWidget extends Composite
- you will need a static int to... -
26 Jan 2009 9:05 AM
- Replies
- 1
- Views
- 1,241
Can some please tell me on what object and for what event I need to listen for a collapse on one of the ContentPanels in a BorderLayout?
-
22 Jan 2009 2:26 PM
Jump to post Thread: Including Non-GWT Libraries by LINEMAN78
- Replies
- 4
- Views
- 1,071
I did something similar... I a file MyPojos.gwt.xml that included <source path="pojos"/> and added a target in my build.xml that updated the jar and inserted the file under com.bar
Unfortunately,... -
22 Jan 2009 1:30 PM
Jump to post Thread: Including Non-GWT Libraries by LINEMAN78
- Replies
- 4
- Views
- 1,071
I saw that, but how do you do it if their packages are not the same?
For example:
com.foo.testapp.MyApp.MyApp.gwt.xml
referencing
com.bar.pojos.MyPojo.java -
22 Jan 2009 12:43 PM
Jump to post Thread: Including Non-GWT Libraries by LINEMAN78
- Replies
- 4
- Views
- 1,071
Ok, I know this is not a GXT specific question, but I have run into this problem several times. I have created a library that is our Bean library generated by JAX-WS from an XSD. I am writing a...
-
22 Dec 2008 8:44 AM
- Replies
- 5
- Views
- 2,226
public void onModuleLoad() {
Viewport viewport = new Viewport();
viewport.setLayout(new FitLayout());
//viewport.add(new PortalExample());
... -
21 Dec 2008 3:16 PM
Jump to post Thread: Portlet Custom Footer by LINEMAN78
- Replies
- 2
- Views
- 931
thanks that worked...
-
19 Dec 2008 7:37 PM
- Replies
- 5
- Views
- 2,226
Well, I got your code to work, but it doesn't work like you want because it doesn't really work with the portal and the portlet disappears as soon as you let go. There are a lot of things that you...
-
19 Dec 2008 12:27 PM
Jump to post Thread: Portlet Custom Footer by LINEMAN78
- Replies
- 2
- Views
- 931
Can anyone tell me how to add something other than a button to the footer of a portlet.
Thanks in advance. -
17 Dec 2008 11:04 AM
- Replies
- 7
- Views
- 1,832
I think so... I will know when I finish compiling
-
17 Dec 2008 10:59 AM
- Replies
- 7
- Views
- 1,832
Nope...sorry, I have 1.1.3 in my tester project, but once I tried it in my full project with 1.2 I got 1 for both.
-
17 Dec 2008 10:50 AM
- Replies
- 7
- Views
- 1,832
OK, this is showing a difference for me now, but there is still a small issue.
In IE getButton() returns 0 for a left click
In Firefox getButton() returns 1 for a left click
In Both... -
17 Dec 2008 10:05 AM
- Replies
- 7
- Views
- 1,832
Sorry for the bump, but I really need this fixed. Any ideas on a workaround/fix yet?
-
16 Dec 2008 7:53 PM
- Replies
- 12
- Views
- 2,349
OK, I saw this and dismissed it because it isn't really a bug. This click is filtered due to the functionality of the event listener on Tree. There is only an SelectionChanged event, and in this...
-
16 Dec 2008 9:13 AM
- Replies
- 12
- Views
- 2,349
I don't see this in Firefox.
-
15 Dec 2008 6:30 PM
- Replies
- 7
- Views
- 1,832
In Firefox, when I click on the different tree items with different buttons, it shows KeyCodes of wither 1, 2 or 3. In IE, no matter what button I click with it is displaying a 0. In both though,...
-
11 Dec 2008 11:19 AM
Jump to post Thread: Event KeyCode Help by LINEMAN78
- Replies
- 0
- Views
- 1,103
Can someone please tell me where the KeyCode static integers are defined? Also, if any of the GXT developers read this, can you please explain to me why you chose to do all of your event stuff as...
-
11 Dec 2008 9:04 AM
Jump to post Thread: Changing default theme by LINEMAN78
- Replies
- 7
- Views
- 5,108
If you aren't planning on having the switcher in you UI, you can just put this in your html head tag
<link rel="stylesheet" type="text/css" href="css/ext-all.css" />
<link rel="stylesheet"... -
10 Dec 2008 9:43 AM
Jump to post Thread: dialogbox and google maps by LINEMAN78
- Replies
- 10
- Views
- 2,303
You can use the majority of this example, but this is for use with your own mapping server, so instead of using the WMS layer, there should be a google layer object.
...
Results 1 to 25 of 120
