fix: header z-index issue.
fix: incorrect `onChanged` event trigger on `GridInputColumn`, `GridTextColumn` and `GridDateColumn`.
This commit is contained in:
@ -1650,8 +1650,9 @@ const dict = {
|
||||
|
||||
function createUse(type, id) {
|
||||
const c = typeof consts !== 'undefined' ? consts : {};
|
||||
const netroot = typeof _network !== 'undefined' ? _network.root : '';
|
||||
const path = c.path || netroot;
|
||||
const path = c.path ||
|
||||
(typeof _network !== 'undefined' ? _network.root :
|
||||
(typeof _net !== 'undefined' ? _net.root : ''));
|
||||
const ver = c.resver == null ? '' : `?${c.resver}`;
|
||||
const use = document.createElementNS(svgns, 'use');
|
||||
if (id?.length === 1 && id.charCodeAt(0) > 0xf000) {
|
||||
|
Reference in New Issue
Block a user