fix: header z-index issue.

fix: incorrect `onChanged` event trigger on `GridInputColumn`, `GridTextColumn` and `GridDateColumn`.
This commit is contained in:
2024-02-26 16:11:42 +08:00
parent 7940edbea2
commit 38bad864e0
5 changed files with 63 additions and 45 deletions

View File

@ -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) {