Questions tagged [smartgwt]

Smart GWT is a GWT-based framework that allows you to not only utilize its comprehensive widget library for your application UI, but also tie these widgets in with your server-side for data management

SmartGWT is based on the powerful and mature SmartClient library. SmartGWT provides a wide-array of rich components that are based on GWT. In addition to SmartGWT LGPL, Pro & Enterprise editions of Smart GWT are available with additional features & tools, as well as commercial support.

SmartGWT is compatible with GWT 1.5.3, GWT 1.6.4, GWT 1.7.x and GWT 2.x

More info at : www.smartclient.com/smartgwt/

1265 questions
0
votes
1 answer

GWT Platform, GWT-Ext and SmartGWT

Currently we are using GWT Platform with MVP architecture for our UI development. I could see that we always get an advantage of using SmartGWT or GWT-Ext over GWT Platform because there are many built in components which are hard to write in…
Santosh
  • 1,849
  • 4
  • 19
  • 31
0
votes
1 answer

SmartGWT mobile Record with SwitchItem

I am moderately new to SmartGWT and am trying to figure out how to have a RecordList where each record has the ability to have a SwitchItem attached to it. So basically create a list of selectable items, but those items also will have a SwitchItem…
Blaine Mucklow
  • 592
  • 7
  • 18
0
votes
2 answers

GWTP error using SmartGWT Window and PresenterWidget

I am using SmartGWT 3.0 and GWTP 0.7. I am trying to do a simple PresenterWidget showing a SmartGWT Window. This is the code for the widget presenter: import com.gwtplatform.mvp.client.PresenterWidget; import…
miguialberto
  • 316
  • 1
  • 3
  • 14
0
votes
1 answer

Editing data in Listgrid's filter editor doesn't lead to fetchData

I have a ListGrid with filter editor set to visible. Normally if I type data in filter editor it leads to fetching data from server and my executeFetch(..) method is being called. But in some cases this method isn't called after editing filter's…
Yegoshin Maxim
  • 872
  • 2
  • 21
  • 54
0
votes
1 answer

Handle changes to a big form. Alert before closing modal

I am currently working on a Customer Management application made in SmartGWT 2.0. The Add Customer form is a fairly big one with multiple tabs and each tab has lot of fields. This form is opened in a modal window which have a save and a close button…
Shantanu Wagh
  • 1,011
  • 7
  • 13
0
votes
2 answers

Prevent some values of SmartGWT IPickTreeItem to be selected

I'm trying to clear the user selected value on a IPickTreeItem. This is the only solution I've found to restrict the user from selecting some of the Tree root values (not all). To be more clear, it seems that calling event.cancel() do not stop the…
Jean-Michel Garcia
  • 2,359
  • 2
  • 23
  • 44
0
votes
1 answer

set the values in Listgrid (smartGWT)

I am trying to use smart Gwt, Listgrid. I am using both com.google.gwt.user.client.ui and smart gwt. I have value in a ListGridRecords[] records. I am unable to set the values in table. this piece of code is in composite. public TableDocument(Action…
GameBuilder
  • 1,169
  • 4
  • 31
  • 62
0
votes
1 answer

SmartGWT DataSource string XML

I am currently using a SmartGWT grid, that uses a DataSource object, which receives an xml file. All is well with this approach, but I want to know if I can just send a string with an xml structure. Something like the below: String xml =…
Mariah
  • 1,073
  • 1
  • 14
  • 33
0
votes
1 answer

How to use GWT SerializationStreamFactory

I am trying to serialize a object in GWT using SerializationFactory, but I am not able to get it working. Here is the sample code of my POC: import com.google.gwt.user.client.rpc.SerializationException; import…
Durin
  • 2,070
  • 5
  • 23
  • 37
0
votes
1 answer

Include a button on toolstrip under a tab control

When I assign the button on toolstrip in a tab control, the application just stands by and will not respond. Here is my code: ToolStrip toolStrip_3 = new ToolStrip(); toolStrip_3.setWidth100(); toolStrip_3.setHeight("20px"); …
0
votes
1 answer

not able to use smart GWT

trying to use smart GWT Using smart gwt 2.5 dowloded from link below smartgwt 2.5 Firefox 6.0 I made a small web application project(without smart GWT) which is working fine. Now in the *same project i added smartGwt 2.5 and added
GameBuilder
  • 1,169
  • 4
  • 31
  • 62
0
votes
1 answer

How to call Java method on button created in JS/JSNI

I want to call a Java method on a click of a button which is NOT created as usual in GWT but is created by using plain HTML. Below is the sample code:- private native void createHeaderSpanContents(Element element)/*-{ element.innerHTML='
Anuroop
  • 993
  • 3
  • 13
  • 25
0
votes
1 answer

how to integrate GoogleMap APIV3 into SmartGWT?

I am integrating gwt-maps-3.8.0-pre1.zip into aa application which using gwt-platform MVP and smartgwt. i have a mainpresenter and nested a presenterwidget into it. VLayout is used as parent's canvas and using HTMLPane as nested googlemap's…
chendl
  • 1
  • 2
0
votes
1 answer

SmartGWT dynamic columns in ListGrid (client side)

I would like to create a ListGrid where the user can add columns to define some values row per column, just like an excel sheet. Adding values vertically should be as simple as vertically. I'm pretty new in web developing and I count on more…
mordka
  • 392
  • 3
  • 11
0
votes
1 answer

SmartGWT DateTimeItem: accept 12 hour format

I am using the SmartGWT DateTimeItem component. By default, the component accepts time in the 24 hour format (ie 11:15, 15:30). I would like to know how I can configure the component to accept the time in 12 hour format (ie 11:15 am,…