在 kogrid 中,我无法选择网格中的任何文本。您可以在他们的示例中看到这一点
http://ericmbarnard.github.com/KoGrid/#/examples
无论如何我可以让它能够选择单元格中的文本吗?
在 kogrid 中,我无法选择网格中的任何文本。您可以在他们的示例中看到这一点
http://ericmbarnard.github.com/KoGrid/#/examples
无论如何我可以让它能够选择单元格中的文本吗?
它是用Knockoutjs 构建的,所以有一个你需要选择的文本的 Observable,我敢肯定。
我不知道这个 KO Grid,但知道 KO 你需要做什么只是看看ko.observable()
你需要哪一个,并为你的目的创建一个自定义函数。
这可能是因为默认的 kogrid.css 有这个部分
.kgNoSelect{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
分叉代码,并删除此定义,您应该能够选择文本。