Hi Isomorphic,
please see this BuiltInDS testcase:
Setup:
Browser: Google Chrome Version 70.0.3538.110 (64-Bit) (set to Responsive)
SmartClient Version: v12.0p_2018-12-06/PowerEdition Deployment (built 2018-12-06)
As You can see in the video, if one clicks on the ComboBoxItem, it tries to open but disappears immediately. Are there settings that I'm missing?
Thanks in advance
Kind Regards
please see this BuiltInDS testcase:
Code:
package com.smartgwt.sample.client; import com.google.gwt.core.client.EntryPoint; import com.smartgwt.client.core.KeyIdentifier; 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.VLayout; /** * Entry point classes define <code>onModuleLoad()</code>. */ public class BuiltInDS implements EntryPoint { /** * 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(); } }); VLayout v = new VLayout(); v.setWidth100(); DynamicForm dF = new DynamicForm(); ComboBoxItem cB = new ComboBoxItem(); cB.setValueMap("Item 1"); dF.setFields(cB); v.addMember(dF); v.draw(); } }
Browser: Google Chrome Version 70.0.3538.110 (64-Bit) (set to Responsive)
SmartClient Version: v12.0p_2018-12-06/PowerEdition Deployment (built 2018-12-06)
As You can see in the video, if one clicks on the ComboBoxItem, it tries to open but disappears immediately. Are there settings that I'm missing?
Thanks in advance
Kind Regards
Comment