Re: Why the form isn't getting submitted?

2008-12-14 Thread HB
Well, it turned out that I have to add the FormPanel to the main panel... On Dec 14, 4:16 pm, LoneWolf hubaghd...@gmail.com wrote: Hey, I'm trying to use FormPanel to submit values to a servlet: +         form = new FormPanel();         form.setAction(/webcontext/command);        

How to centralize a dialog?

2008-12-15 Thread HB
Hey, How to centralize a Dialog across the screen? Thanks for help. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com

Re: How to centralize a dialog?

2008-12-15 Thread HB
, 2008 at 3:23 PM, HB hubaghd...@gmail.com wrote: Hey, How to centralize a Dialog across the screen? Thanks for help. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group

Keeping the header when scrolling

2009-01-12 Thread HB
Hey, I have a FlexTable (its first row is a header row) embedded in a ScrollPanel container. Scrolling the scroll pane will cause the headers to move away. Any idea how to keep the header even if the user is scrolling? Well yes, I can create two FlexTables, one for the header and one for the

Inconsistent behavior with insertRow and removeRow

2009-01-14 Thread HB
Hey, In order to insert dynamically a new row into FlexTable, I do the following: int insertionIndex = groupsTable.getRowCount(); int index = groupsTable.insertRow(insertionIndex); The last cell in each row contains a link to delete the row: for (int i = 1, size = groupsTable.getRowCount(); i

Re: Inconsistent behavior with insertRow and removeRow

2009-01-14 Thread HB
for help. On Jan 14, 1:38 pm, Lothar Kimmeringer j...@kimmeringer.de wrote: HB schrieb: for (int i = 1, size = groupsTable.getRowCount(); i size; i++) {   // the first row is the header, so i starts with value of 0   // if criteria is met then   flextable.removeRow(i); } The problem

Re: Inconsistent behavior with insertRow and removeRow

2009-01-14 Thread HB
. Why you are passing 1 to it? On Jan 14, 3:03 pm, Lothar Kimmeringer j...@kimmeringer.de wrote: HB schrieb: I changed the code to the following: for (int i = 1; i groupsTable.getRowCount(); i++) {   // the first row is the header, so i starts with value of 1   // if criteria is met

Re: Inconsistent behavior with insertRow and removeRow

2009-01-14 Thread HB
. Why you are passing 1 to it? On Jan 14, 3:03 pm, Lothar Kimmeringer j...@kimmeringer.de wrote: HB schrieb: I changed the code to the following: for (int i = 1; i groupsTable.getRowCount(); i++) {   // the first row is the header, so i starts with value of 1   // if criteria is met

Re: Inconsistent behavior with insertRow and removeRow

2009-01-14 Thread HB
are deleted at the UI level except the row that I clicked ! On Jan 14, 3:22 pm, Lothar Kimmeringer j...@kimmeringer.de wrote: HB schrieb: My mistake typo, groupsTable is the same flextable, the same object. As well, that way you would delete only half of the elements, Why? use flextable.remove

Not sure if integrating with GWT is problematic

2009-01-18 Thread HB
Hey, Our application is built with Hibernate, Spring and GWT. The main meat of the application is implemented via GWT RPC mechanism. I'm injecting dependencies into the RPC servlet via static properties: ++ public class CoolServiceImpl extends RemoteServiceServlet implements CoolService {

Hiberache

2009-03-22 Thread HB
Hey, I use Hibernate as the persistence mapper for our application. Well, I face the problem that every one faces: GWT doesn't serializing Hibernate proxy classes. At the beginning, I used to initialize the many side of the relationship before sending it back via GWT-RPC , but things now are

Giving GWT another test drive

2009-12-09 Thread HB
Hey, In the past I developed a GWT application for our client. The application was built upon Spring Framework and Hibernate ORM. While I love and adore GWT, I stopped using it for: 1. Building the interface in the code was a killer thing for me. 2. Difficulties marshelling Hibernate objects back

adding a background-image to the body or to an HTMLPanel

2016-01-20 Thread stp hb
Hello! I'd like to add a background-image to the body element or at least to a HTMLPanel in the UIBinder xml file. Here's my code: http://dl.google.com/gwt/DTD/xhtml.ent;> public class LoginView extends Composite implements ILoginView { @UiTemplate("LoginView.ui.xml")