gpt4 book ai didi

handsontable - 从列名获取列号

转载 作者:行者123 更新时间:2023-12-05 01:07:58 27 4
gpt4 key购买 nike

有没有什么方法可以从列名中获取列号?

我只能检索列名,我需要 getCellMeta 的列号。

谢谢

最佳答案

使这个功能解决了我的问题:

function GetColFromName(name)
{
var n_cols = $editorTableContainer.handsontable('countCols');
var i = 1;

for (i=1; i<=n_cols; i++)
{
if (name.toLowerCase() == $editorTableContainer.handsontable('getColHeader', i).toLowerCase()) {
return i;
}
}
return -1; //return -1 if nothing can be found
}

关于handsontable - 从列名获取列号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17709323/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com