Hi Isomorphic,
please see this testcase:
Please run this in Safari on mac.
Expected behavior: 99010600 gets displayed
Actual behavior: field is empty
Setup:
Safari Version 11.1.2
SmartClient Version: v12.0p_2019-04-03/PowerEdition Deployment (built 2019-04-03)
Thanks in advance,
Kind Regards
please see this testcase:
Code:
package com.smartgwt.sample.client;
import com.google.gwt.core.client.EntryPoint;
import com.smartgwt.client.core.KeyIdentifier;
import com.smartgwt.client.data.Criteria;
import com.smartgwt.client.util.Page;
import com.smartgwt.client.util.PageKeyHandler;
import com.smartgwt.client.util.SC;
import com.smartgwt.client.widgets.form.DynamicForm;
import com.smartgwt.client.widgets.form.fields.ComboBoxItem;
import com.smartgwt.client.widgets.layout.VStack;
/**
* Entry point classes define <code>onModuleLoad()</code>.
*/
public class BuiltInDS implements EntryPoint {
private DynamicForm boundForm;
/**
* This is the entry point method.
*/
public void onModuleLoad() {
KeyIdentifier debugKey = new KeyIdentifier();
debugKey.setCtrlKey(true);
debugKey.setKeyName("D");
Page.registerKey(debugKey, new PageKeyHandler() {
public void execute(String keyName) {
SC.showConsole();
}
});
VStack vStack = new VStack();
vStack.setLeft(175);
vStack.setTop(75);
vStack.setWidth("70%");
vStack.setMembersMargin(20);
boundForm = new DynamicForm();
boundForm.setDataSource("supplyItem");
boundForm.setImplicitCriteria(new Criteria("SKU", "99010600"));
boundForm.setAutoFetchData(true);
boundForm.setWidth100();
boundForm.setHeight100();
boundForm.setFields(new ComboBoxItem("SKU"));
boundForm.disable();
vStack.addMembers(boundForm);
vStack.draw();
}
}
Expected behavior: 99010600 gets displayed
Actual behavior: field is empty
Setup:
Safari Version 11.1.2
SmartClient Version: v12.0p_2019-04-03/PowerEdition Deployment (built 2019-04-03)
Thanks in advance,
Kind Regards
Comment