如果 dgrid 的 id 以数字开头,则 dgrid 列调整大小、隐藏、重新排序属性会出错
dgrid column resize, hide, reorder properties gives an error if id of dgrid starts with a number
错误如下:
Uncaught SyntaxError: Failed to execute 'addRule' on 'CSSStyleSheet': Failed to parse the rule '#742grid__Search .dgrid-column-2 { 显示:none; }'。
当dgrid的id以数字开头时会出现此错误,这里以742
开头
如果我将 dgrid 的 ID 更改为 grid_742_Search,则不会显示相同的错误。
我认为这是一个错误。如果我错了请纠正我。
HTML 根据 HTML 4.0 规范,ID 不能以数字开头。
ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").
错误如下: Uncaught SyntaxError: Failed to execute 'addRule' on 'CSSStyleSheet': Failed to parse the rule '#742grid__Search .dgrid-column-2 { 显示:none; }'。 当dgrid的id以数字开头时会出现此错误,这里以742
开头如果我将 dgrid 的 ID 更改为 grid_742_Search,则不会显示相同的错误。 我认为这是一个错误。如果我错了请纠正我。
HTML 根据 HTML 4.0 规范,ID 不能以数字开头。
ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").