SmartGWT 4.1p 2014-04-29
For the data field there is 1MB max size limit in the ds.xml file. Adding a bigger file and clicking save we get an empty warning dialog. It did work earlier.
Below is the ds itself, hope this is enough for you. Please let me know. Thanks.
For the data field there is 1MB max size limit in the ds.xml file. Adding a bigger file and clicking save we get an empty warning dialog. It did work earlier.
Below is the ds itself, hope this is enough for you. Please let me know. Thanks.
Code:
<DataSource ID="multiUploadDetail" dataFormat="iscServer" serverType="sql" tableName="att_attachmentitem"> <fields> <field name="id" type="sequence" primaryKey="true" hidden="true" /> <field name="attachmentgroup_id" type="integer" foreignKey="multiUploadMaster.id" hidden="true" /> <field name="data" type="binary"> <maxFileSize>1048576</maxFileSize> </field> </fields> </DataSource>
Comment