Hello,
I'm using SmartGWT 3.1p of 12/25/2012 (v8.3p_2012-12-25/PowerEdition Deployment) and I'm having problems with MultiFileItem.
I've added a MultiFileItem in a section on a DynamicForm that is contained in a popup (Window class).
The first problems are that when I click on the add icon to upload files:
1. The MultiFileItem Upload popup is shown behind my Window (see screenshot).
2. The upload button is not shown.
One other problem is that I'm using "VisibilityMode.MUTEX" on the form and the MultiFileItem component is always visible, even when SectionItem is closed.
These problems happen in dev mode, in compiled mode the form is not shown (Tested with FF 17 and Chrome 23).
MultiFileItem is created this way (inspired by http://smartclient.com/smartgwtee/showcase/#multi_file):
Regards,
Cédric.
I'm using SmartGWT 3.1p of 12/25/2012 (v8.3p_2012-12-25/PowerEdition Deployment) and I'm having problems with MultiFileItem.
I've added a MultiFileItem in a section on a DynamicForm that is contained in a popup (Window class).
The first problems are that when I click on the add icon to upload files:
1. The MultiFileItem Upload popup is shown behind my Window (see screenshot).
2. The upload button is not shown.
One other problem is that I'm using "VisibilityMode.MUTEX" on the form and the MultiFileItem component is always visible, even when SectionItem is closed.
These problems happen in dev mode, in compiled mode the form is not shown (Tested with FF 17 and Chrome 23).
MultiFileItem is created this way (inspired by http://smartclient.com/smartgwtee/showcase/#multi_file):
Code:
MultiFileItem multiFileItem = new MultiFileItem("documento"); multiFileItem.setAttribute("dataSource", Constantes.DS_DOCUMENTO_REL_MENSAL);
Regards,
Cédric.
Comment