Hi, I am using Ui Binder, when I try to compile the gwt module on the fly compilation using &gwt.codesvr=127.0.0.1:9997 it is not compiling.
What would be the reason for this, any idea ? I am using gwt 2.1, eclipse, app engine 1.4 This is my UiBinder <!DOCTYPE ui:UiBinder SYSTEM 'http://dl.google.com/gwt/DTD/xhtml.ent'> <ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder" xmlns:g="urn:import:com.google.gwt.user.client.ui" xmlns:d="urn:import:com.google.gwt.user.datepicker.client" > <ui:style src="uiBinder.css"> </ui:style> <g:HTMLPanel ui:field="panel" styleName='{style.whitebackground}' width="100%"> <g:HorizontalPanel> <!-- Left Menu panel button added here. --> <g:VerticalPanel styleName='{style.screenlet-body-bgcolor}'> <g:Button ui:field="newExpenseButton" styleName='{style.gwt-Button}' text="New Expense"/> <g:Button ui:field="findExpenseButton" styleName='{style.gwt-Button}' text="Find Expense"/> </g:VerticalPanel> <g:VerticalPanel styleName='space' ui:field="rightPanel"> <g:Label styleName='Ui-screentlet-titlebar' ui:field="expensesTitleLabel" text="Expenses Information"/> <g:Label ui:field="informationLabel" text="Here, you can create and find the Expenses." styleName='dialogBoxMessage'/> <g:HTML ui:field="htmlErrorMessage"></g:HTML> <g:VerticalPanel ui:field="newExpenseEntryPanel"> <g:HorizontalPanel spacing="10"> <g:Label ui:field="dateLabel" text="Date:"/> <d:DateBox ui:field="transactionDate" styleName='dateTextBox'/> <g:Label text="Ref No:"/> <g:TextBox ui:field="referenceNumberTextBox"/> <g:Label text="Comments:"/> <g:TextBox ui:field="commentsTextBox"/> </g:HorizontalPanel> <g:FlexTable ui:field="expenseTable" styleName='{style.tablebackground}' width="300px" height="40px"/> <g:Button ui:field="addNewExpenseRowButton" text="Add New Expense" styleName='gwt-Button_Normal'/> <g:FlexTable ui:field="cashAndBankTable" styleName='{style.tablebackground}' width="300px" /> <g:HorizontalPanel spacing="10"> <g:Button ui:field="createExpenseButton" text="Create" styleName='gwt-Button_Normal' width="100px"/> <g:Button ui:field="cancelExpenseButton" text="Cancel" styleName='gwt-Button_Normal' width="100px"/> </g:HorizontalPanel> </g:VerticalPanel> <g:VerticalPanel ui:field="findExpenseEntryPanel"> </g:VerticalPanel> </g:VerticalPanel> </g:HorizontalPanel> <!-- background style and alignment changed using Id UIFooter --> <g:HTML styleName='{style.UIFooter}'> Copyright © 2010 <a href="http://www.veersoftsolutions.com"> www.veersoftsolutions.com</a> All Rights Reserved. </g:HTML> </g:HTMLPanel> </ui:UiBinder> -- *Regards Suresh Babu G* -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
