GWT version: 2.5.0
SmartGWT version: 3.1-p20130419
I have the following data source file:
On line 11 with the foreign key specification I'm getting an Eclipse warning of "cannot be resolved to a type." Is there any way to get rid of this warning?
SmartGWT version: 3.1-p20130419
I have the following data source file:
Code:
<DataSource dbName="Mysql" tableName="contactlists" ID="contactlists" dataSourceVersion="1" generatedBy="v8.3p_2013-02-26/EVAL Deployment 2013-02-26" serverType="sql" > <fields> <field name="ID" title="ID" type="sequence" hidden="true" primaryKey="true"/> <field name="AccountID" title="Account ID" type="integer" hidden="true" foreignKey="accounts.ID"/> <field name="Name" title="Name" type="text" length="45" hidden="false"/> <field name="UploadedFile" title="Uploaded File" type="binary" hidden="true"/> <field name="UploadedFile_filename" title="File Name" type="text" length="255" hidden="false"/> <field name="UploadedFile_filesize" title="Size" type="integer" hidden="false"/> <field name="UploadedFile_date_created" title="Date Created" type="datetime" hidden="false"/> </fields> </DataSource>
Comment