2

如何专门将剑道 ui 窗口设置到位置 x, y

我试过 .x 和 .left 和 .y 和 .right

这些似乎都没有任何效果,我在网上或文档中都找不到任何东西。

4

2 回答 2

6

使用 window 对象的 position 属性:

http://docs.telerik.com/kendo-ui/api/javascript/ui/window#configuration-position

$("#dialog").kendoWindow({
  position: {
    top: 100, // or "100px"
    left: "20%"
  }
});
于 2015-05-27T14:25:06.720 回答
1

您可以通过 CSS 直接实现这一点

$("#windowId").closest(".k-window").css({
  top: 200,
  left: 400
});
于 2015-05-27T14:19:09.687 回答