1) SmartClient Version: v10.1p_2016-06-14/Pro Deployment (built 2016-06-14)
2) Safari on iPad, iOS 9.3.2
6a) gwt.xml:
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='app'>
<inherits name="com.smartgwtee.SmartGwtEE"/>
<entry-point class='test.client.TestComboBoxItem'/>
<source path='client'/>
</module>
6b) test/client/TestComboBoxItem.java:
package test.client;
import com.google.gwt.core.client.EntryPoint;
import com.smartgwt.client.widgets.form.DynamicForm;
import com.smartgwt.client.widgets.form.fields.ComboBoxItem;
import com.smartgwt.client.widgets.form.fields.SelectItem;
//
// Tested against:
// SmartClient Version: v10.1p_2016-01-12/Pro Deployment (built 2016-01-12)
// SmartClient Version: v10.1p_2016-06-14/Pro Deployment (built 2016-06-14)
//
public class TestComboBoxItem implements EntryPoint {
public void onModuleLoad() {
SelectItem selectItem = new SelectItem("selectItem", "SelectItem");
selectItem.setBrowserInputType("text");
ComboBoxItem comboBoxItem = new ComboBoxItem("comboBoxItem", "ComboBoxItem");
comboBoxItem.setBrowserInputType("text");
DynamicForm dynamicForm = new DynamicForm();
dynamicForm.setItems(selectItem, comboBoxItem);
dynamicForm.draw();
}
}
2) Safari on iPad, iOS 9.3.2
6a) gwt.xml:
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='app'>
<inherits name="com.smartgwtee.SmartGwtEE"/>
<entry-point class='test.client.TestComboBoxItem'/>
<source path='client'/>
</module>
6b) test/client/TestComboBoxItem.java:
package test.client;
import com.google.gwt.core.client.EntryPoint;
import com.smartgwt.client.widgets.form.DynamicForm;
import com.smartgwt.client.widgets.form.fields.ComboBoxItem;
import com.smartgwt.client.widgets.form.fields.SelectItem;
//
// Tested against:
// SmartClient Version: v10.1p_2016-01-12/Pro Deployment (built 2016-01-12)
// SmartClient Version: v10.1p_2016-06-14/Pro Deployment (built 2016-06-14)
//
public class TestComboBoxItem implements EntryPoint {
public void onModuleLoad() {
SelectItem selectItem = new SelectItem("selectItem", "SelectItem");
selectItem.setBrowserInputType("text");
ComboBoxItem comboBoxItem = new ComboBoxItem("comboBoxItem", "ComboBoxItem");
comboBoxItem.setBrowserInputType("text");
DynamicForm dynamicForm = new DynamicForm();
dynamicForm.setItems(selectItem, comboBoxItem);
dynamicForm.draw();
}
}
Comment