是否可以指定Popup Kendo菜单的左侧和顶部或X,Y位置?
正如我从官方文件中看到的那样
http://docs.telerik.com/kendo-ui/api/javascript/ui/popup#configuration-position
它只能指定一些字符串参数。
但我想指定确切的位置(例如鼠标点击的位置)
答案 0 :(得分:1)
我已经通过踩踏Kendo UI源代码解决了我发现你可以在open方法中指定popup.open(x,y)的确切位置。
See this modified Kendo Example
但它没有记录
Kendo Popup Open documentation
答案 1 :(得分:0)
您可以尝试通过css
事件中jQuery的open
函数覆盖弹出窗口的位置。
open: function(event) {
event.sender.element.css("top", "20px");
}