如何应用 Kendo 上下文菜单过滤器以跳过前两个网格列

How to apply Kendo Context menu filter to skip first two grid columns

我正在创建 kendo 上下文菜单,我只想在用户右键单击 kendo 网格时显示它。我能够限制用户仅在用户右键单击网格时显示 kendo 上下文菜单。 但是现在我必须隐藏前两列网格的上下文菜单,当用户右键单击其余列时 kendo 上下文菜单应该出现。

下面是我正在尝试但不起作用的代码。

$("#contextMenu").kendoContextMenu({
 target: "#grid",
 filter: ".k-grid-content tbody tr[role='row'] td:not(:nth-child(1), :nth-child(2))"
});

非常感谢任何帮助

不排除前两个,只包括其余的怎么样?类似于:

$("#contextMenu").kendoContextMenu({
 target: "#grid",
 filter: ".k-grid-content tbody tr[role='row'] td:nth-child(n+3)"
});