smartgwt

Ext GWT vs GWT-EXT

is there a difference between Ext GWT and GWT-Ext? Cos i was surfing Ext GWT and saw this page http://gwt-ext.com/demo/. any help guys? ...

Consuming REST services with SmartGWT

While creating a simple client for a REST service which I have stubbed out, I noticed that smartGWT's RestDataSource class is limited in the type of xml it can understand. All REST resources must respond with XML in the following format.. <response> <status>0</status> <startRow>0</startRow> <endRow>10</endRow> <totalRows...

How to show HTMLEditor(Rich Text Editor) on SmartGWT form

Hi, I am newbie for smartgwt. I have generated a smartgwt application code through fornax platform based on the provided btdesign file. I have defined a column datatype to "BLOB" in btdesign for an entity and expecting HTML Editor(rich text editor) should be appeared on the detail form but its showing TextArea. I need HTML Editor(ric...

KeyPressFilter & KeyPressHandler at same time

Hi I m using SmartGwt java. Is there any way to use both keypresshandler and keypressfilter at the same time on textItem. Actually i m using keypress handler to control navigation in the form.. but I have observed that keypress filter is disabled when keypresshandler is applied on textitem. ...

Using uibinder with SmartGWT?

Is it possible to use UiBinder with SmartGWT at all? I've heard that at the moment it's impossible, though there are efforts to bridge the gap. How are those efforts? Have they yielded any successes yet? Furthermore, if SmartGWT is still not UiBinder-friendly yet, are there any other GWT libraries that might be? ext-GWT, perhaps? ...

Smartgwt - create a panel with title and a border

This sounds like a pretty simple thing to do but I havent been able to find an easy way to do this. How do I create a panel with a title and a border which can contain my widgets? I have seen the SectionStack class which provides this. But I dont want to create a section stack. Window can be added to a layout and drawn. But is it the on...

Does GWT and/or SmartGWT provide an implementation of CSS selectors?

I've seen GWT's getElementById, but I'm looking for something a lot more flexible/powerful. I'd prefer CSS selectors, but an XPath interface would do in a pinch. Thanks. ...

Are any of the GWT widget libraries compatible with uiBinder?

Are any of the third-party widget libraries compatible with GWT 2.0's features, including uiBinder? All I know is that it seems as if SmartGWT can't. ...

SmartGWT DataSource binding to ListGrid and DynamicForm

First let me warn readers not to pass me off to any links in isomorphic because it is highly probable I have read it and I have scoured the smartgwt showcase running locally here as I ask this question. What I ask is not documented and if it is, I am unable to decipher and need actual explanation here. No, do not tell me about SmartGWT E...

SmartGWT RestDateSource and Paging (Large DataSet of) Dynamic Data

Hello I have a database table for log messages and at any time there can be inserted new rows. I want to show them in grid and when you scroll down I want to request more rows form this table (server side) but without to be affected from new added rows. The new rows only have to be visible if I refresh the whole grid. I'm not sure how ...

SmartGwt - Load Grid Data From JSON

I am trying to get started with SmartGwt. I am using the XJSONDatasource to make a cross-domain call to an example page at SmartClient that has JSON data. When I run the code, however, a popup comes up that says "Finding Records that match your criteria..." This never goes away, and the data is not loaded. I am using the free version of ...

drag and drop environment to start developing in gwt

is there any drag and drop environment to work with GWT widgets. or any user friendly IDE or plugin on IDE's i remember using some thing like MyEclips for developing Hibernate was better then working with .xml files. ...

Caching of static contets of the SmartGWT app

I'm developing app with SmartGWT framework which gonna work through ssl-connection. SmartGwt libs are big enough, and using of https prevents caching. Is there any way to use JSONP to access static content of SmartGwt app via http? Or maybe you can suggest any other way of static content caching in this case? Thanks ...

Failing multiple field validation in SmartGWT

I am trying to have a form field contain one or more elements that are defined in a different data source. Elements have a numeric id and a human-readable name. It all works well until I try to save; in this case, I always get the "Not a valid option" error. The form I am editing is based on a Campaigns datasource, that may be linked to...

Populating ListGridFields in smartgwt

This is my code snippet: final ListGrid subscriberGrid = new ListGrid(); subscriberGrid.setWidth(500); subscriberGrid.setHeight(224); subscriberGrid.setShowAllRecords(true); subscriberGrid.setSelectionType(SelectionStyle.SIMPLE); subscriberGrid.setSelectionAppearance(SelectionAppearance.CHECKBOX); ListGridFi...

Making POST requests with parameters in GWT

I am trying to do a POST request with a set of parameters to a given URL. The problem I am having is that the POST request is made, but no parameters are passed. RequestBuilder builder = new RequestBuilder(RequestBuilder.POST, url); StringBuilder sb = new StringBuilder(); for ( String k: parmsRequest.keySet() ) { ...

How to populate data in a tab, on tabselect (smartGWT)

Hi, this is my sample code. I have a total of 3 ListGrids, each which resides in a Canvas, inside 3 tabs, which is inside one TabSet. If I remove the uncommented lines, I cant select any values, because on every click, the ListGrid is populated. tab.addClickHandler(new ClickHandler() { @Override public void onClick(Clic...

How to get current System date in SmartGwt application

Hi All, How to get current system date in Smartgwt application (Merely javascript). I need date to be printed as 25 October 2010 something like this. Currently i am using the following code: String currentDate ; java.util.Date date = new Date(); String tempDate = date.toString(); String[] currDate = tempDate.split(" "); currentD...

Smart Gwt components are not rendered in html div tag

Hi all, I am using smart gwt to develop my application, to create the structure of the application i am using gwt components. The HTML code snippet is as below: In my pagePanel div all the components are added. As i add components dynamically in the pagePanel div, the pagePanel div does not enlarges as per the size of the added ...

SmartGWT and Vaadin rtl support

Does Vaadin or SmartGWT support RTL in their provided widgets/themes? Thanks ...