Search Type: Posts; User: bogusky
Search: Search took 0.02 seconds.
-
19 Dec 2011 1:19 AM
- Replies
- 2
- Views
- 828
every grid's column has built-in style with column id in the end.
you can add style for grid for exact one grid to match.
ColumnConfig column = new ColumnConfig();
column.setId("my_id");
Grid... -
21 Sep 2011 3:48 AM
Jump to post Thread: Problem with DateField by bogusky
- Replies
- 1
- Views
- 495
we solved it using custom date field serializer.
package com.google.gwt.user.client.rpc.core.java;
import java.util.Date;
import com.google.gwt.user.client.rpc.SerializationException;... -
19 Sep 2011 5:55 AM
- Replies
- 1
- Views
- 727
I solved it. Drop down list need "position: absolute".
-
19 Sep 2011 3:21 AM
- Replies
- 1
- Views
- 727
i am trying to implement Combobox with Treepanel in dropdown list. Its same as Combobox, but i have problem with shadow layer. Y-Position of shadow is out of the screen.
entrypoint
public... -
11 May 2011 4:25 AM
- Replies
- 1
- Views
- 1,288
Maybe url in setAction(url) is your problem. Did you try this?
...
formPanel.setAction("servlet.gupld");
formPanel.setEncoding(Encoding.MULTIPART);
... -
11 May 2011 4:05 AM
Jump to post Thread: Grid data does not show up by bogusky
- Replies
- 4
- Views
- 2,016
public void onModuleLoad() {
GridWidget gw = new GridWidget();
gw.setSize(500,300);// you must size your top panel
RootPanel.get().add(gw);
} -
13 Apr 2011 12:25 AM
- Replies
- 2
- Views
- 1,696
Background image
.x-btn-tl, .x-btn-tr, .x-btn-tc, .x-btn-ml, .x-btn-mr, .x-btn-mc, .x-btn-bl, .x-btn-br, .x-btn-bc {
background-image: url("../images/default/button/btn.gif");
} -
5 Apr 2011 8:56 AM
- Replies
- 3
- Views
- 1,792
contentPanel.getHeader().sinkEvents(Event.ONCLICK);
contentPanel.getHeader().addListener(Events...... -
2 Apr 2011 12:31 AM
- Replies
- 2
- Views
- 1,145
GridView contains :
...
protected boolean preventScrollToTopOnRefresh;
...
http://www.sencha.com/gxtdocs/#com.extjs.gxt.ui.client.widget.grid.GridView
... -
1 Apr 2011 3:37 AM
Jump to post Thread: comboBox.setTemplate(...) by bogusky
- Replies
- 2
- Views
- 1,446
ComboBox<Country> countryComboBox = new ComboBox<Country>();
countryComboBox.setStore(countryStore);
countryComboBox.setTemplate( getFlagTemplate("resources/images/flags") );
... -
22 Mar 2011 12:48 AM
Jump to post Thread: GXT Combobox or GWT SuggestBox? by bogusky
- Replies
- 7
- Views
- 3,213
=D>=D>
-
11 Mar 2011 2:41 AM
- Replies
- 2
- Views
- 940
public class GXTTest implements EntryPoint {
Button btn;
public void onModuleLoad() {
ContentPanel main = new ContentPanel();
main.setSize(400, 300);
... -
9 Mar 2011 8:28 AM
- Replies
- 2
- Views
- 821
LayoutContainer panel = new LayoutContainer();
panel.setBorders(true); -
10 Jan 2011 1:09 AM
Jump to post Thread: Radios and readonly bug by bogusky
- Replies
- 0
- Views
- 774
public class GxtTest implements EntryPoint {
public void onModuleLoad() {
RadioGroup radioGroup = new RadioGroup();
radioGroup.setOrientation(Orientation.VERTICAL);
... -
30 Nov 2010 3:57 AM
Jump to post Thread: long boxlabel for checkbox by bogusky
- Replies
- 4
- Views
- 1,429
this is your problem
.x-form-check-wrap {
height:22px;
}
i solved this by (but htere is another layout problem)
.x-form-check-wrap {
height: auto !important;
} -
26 Oct 2010 11:44 PM
- Replies
- 5
- Views
- 8,652
you cant use complete jre on client side.
http://code.google.com/webtoolkit/doc/latest/RefJreEmulation.html -
7 Oct 2010 6:21 AM
- Replies
- 9
- Views
- 2,065
ok. il do same way as onClick
-
7 Oct 2010 5:57 AM
- Replies
- 9
- Views
- 2,065
private void bindDocument(DocumentCompactBean aBean) {
BeanModelFactory f = BeanModelLookup.get().getFactory(DocumentCompactBean.class);
XTemplate tpl = XTemplate.create(docTpl);... -
6 Oct 2010 11:47 AM
- Replies
- 8
- Views
- 10,497
1. Use firebug please
2. your image sprite is probably wrong. standard GXT button sprite has bg for 3 state (normal, mouse-over, click) -
6 Oct 2010 9:46 AM
- Replies
- 9
- Views
- 2,065
i use this practice
http://www.sencha.com/forum/showthread.php?85504-calling-native-method-from-a-template&p=409238#post409238 -
14 Jul 2010 7:45 AM
- Replies
- 7
- Views
- 2,141
You can use Viewport component
http://www.sencha.com/deploy/gxtdocs/com/extjs/gxt/ui/client/widget/Viewport.html -
7 Jul 2010 1:34 AM
- Replies
- 1
- Views
- 776
http://www.sencha.com/examples-dev/explorer.html#portal
-
23 Jun 2010 10:05 PM
- Replies
- 8
- Views
- 1,846
Question was "I could do by this mode, but what to put in onSuccess to populate the grid?"
but you are right, my code was incomplete. -
22 Jun 2010 11:03 PM
- Replies
- 8
- Views
- 1,846
Why sven?
what is wrong in my code?
thank you for answer. -
21 Jun 2010 4:47 AM
- Replies
- 8
- Views
- 1,846
RpcProxy<PagingLoadResult<Post>> proxy = new RpcProxy<PagingLoadResult<Post>>() {
@Override
public void load(Object loadConfig, final AsyncCallback<PagingLoadResult<Post>> callback) { ...
Results 1 to 25 of 34
