模态框的位置
Position of the modal box
我在 Webix 中创建了一个模式框。如何指定它在页面上的位置?
webix.confirm({
title: "Title",
ok:"Yes", cancel:"No",
text:"Are you sure?",
});
我没有找到 align
之类的属性。有任何想法吗?提前致谢。
Snippet
可以自定义 Webix Scheduler 的任何元素。
您需要做的就是在页面的 <style>
块中重新定义相关 css class 所需的属性。
例如,如果您应该像这样重新定义 webix_modal_box class 的左侧和顶部:
<style type="text/css">
.webix_modal_box{
left:100px !important;
top:100px !important;
}
</style>
这是一个working snippet
我在 Webix 中创建了一个模式框。如何指定它在页面上的位置?
webix.confirm({
title: "Title",
ok:"Yes", cancel:"No",
text:"Are you sure?",
});
我没有找到 align
之类的属性。有任何想法吗?提前致谢。
Snippet
可以自定义 Webix Scheduler 的任何元素。
您需要做的就是在页面的 <style>
块中重新定义相关 css class 所需的属性。
例如,如果您应该像这样重新定义 webix_modal_box class 的左侧和顶部:
<style type="text/css">
.webix_modal_box{
left:100px !important;
top:100px !important;
}
</style>
这是一个working snippet