Hello Tony,
I want to report two small bugs.
The first one. One need to change the code of “select” formatter so that it works without exception in case if usage only formatoptions without having any editoptions defined. The line
var msl = opts.colModel.editoptions.multiple === true ? true : false,
can be modified to
var msl = (opts.colModel.editoptions != null && opts.colModel.editoptions.multiple === true) ? true : false,
for example.
The second bug in View form. It set focus (see the line of focusaref function) on the close elelent of the title (“.ui-jqdialog-titlebar-close”), but the current version of jQuery.focus and at least in IE10 ignore it. One can fix the problem for example by adding .attr(“tabindex”, “-1”) in the line or one can add tabindex
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top