Connection issue(mysql)

2013-09-22 Thread siva kumar
in local application works fine but when connect to ip (remote server ) i had the following error com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. Regards Harsha infotect -- You received this message because you are subs

update the property value in Autobean

2013-09-22 Thread aditi
Have a autobean that has get and set methods for property - status. String getStatus(); void setStatus(String status); There is a case where this status property will be updated by UI. Can we have the autobean property updated and get the updated value across application. Please suggest. --

Re: DataGrid, updateRowData and setSelected

2013-09-22 Thread Jens
SingleSelectionModel only fires a single selection event at the end of the current browser event loop and it does so only if the selection state has actually changed. That means if you execute the following code // assume "currentRecord" is currently selected selectionModel.setSelected(currentRe

Re: DataGrid, updateRowData and setSelected

2013-09-22 Thread Manuel
Hmm not sure, if I explained it correct in my above post. Another try. My datagrid has some record in it. I press "prepareNewRecord"-Button, so i prepare for a new record. SelectionModel is cleared (no line should be selected now, see code below). After the record is persisted successfuly, I ret

DataGrid, updateRowData and setSelected

2013-09-22 Thread Manuel
Hi everyone, I got a DataGrid with a AsyncDataProvider. First I add a Record to my ListOfEntities via ListOfEntities.add(myNewEntity). Then I set selected via Model.setselected(myNewEntity,true). Then I call provider.updateRowData(Start, ListOfEntities); Now my DataGrid shows the List including

Re: How-to display a Javascript-Widget (e.g. from tripadvisor) in an GWT HTML Widget?

2013-09-22 Thread marian lux
Thank you for your answer, but if I enter the URL http://www.jscache.com/wejs?wtype=cdswritereviewlg&uniq=303&locationId=206597&lang=en_AU&border=truein browser I see the following document.write(): document.write( 'http://www.tripadvisor.com/WidgetEmbed-cdswritereviewlg?amp;uniq=303&border

Re: How-to display a Javascript-Widget (e.g. from tripadvisor) in an GWT HTML Widget?

2013-09-22 Thread Thomas Broyer
On Saturday, September 21, 2013 1:34:27 PM UTC+2, marian lux wrote: > > I found something about "Script Injection" and tried the following code to > add the script in my HTML page (on EntryPoint - method): > > Document doc = Document.get(); > ScriptElement script = doc.createScri

Re: Dialog Box Size Limitation???

2013-09-22 Thread asif . tmcp
Thanks Thomas.. I guess I just had a "duh" moment. I have seen it so many times while tinkering but never struck me that it would be the problem. On Sunday, September 22, 2013 5:32:28 AM UTC-4, Thomas Broyer wrote: > > Check your CSS. The project created by webAppCreator or Eclipse has a > ".g

Re: Dialog Box Size Limitation???

2013-09-22 Thread Thomas Broyer
Check your CSS. The project created by webAppCreator or Eclipse has a ".gwt-DialogBox { width: 400px; }" On Saturday, September 21, 2013 5:14:28 AM UTC+2, asif...@gmail.com wrote: > > > > Hi