javascript - Dojo dijit/focus does not make keyboard appear in Firefox and Edge on Surface -
i want popup touch keyboard when input field focus through java scripts call. below sample code , works fine chrome browser firefox , edge doesn't.
<input id="foo" type="text"><br><br> <button id="newactbutton">new act button</button>
require(["dojo/on", "dojo/dom", "dijit/focus", "dojo/domready!"], function(on, dom, focusutil) { var newactbutton = dom.byid("newactbutton"); on(newactbutton, "click", function(){ focusutil.focus(dom.byid("foo")); }); });
Comments
Post a Comment