我有一个350px宽,200px高的小型Web应用程序。我有一个单击按钮时显示的dijit ConfirmDialog。如果没有明确设置对话框的尺寸,它会将自己设置得比我的应用程序大,所以我必须调整窗口大小以进入Ok / Cancel按钮。当我尝试设置尺寸并弹出对话框时,我会看到所有内容1秒钟,然后文本和按钮全部消失,我只有一个带有“确认/取消”按钮的空框。
我发现在样式字段中使用overflow:auto
可以保留所有内容并向对话框添加滚动条。然后我发现.dijitDialogPaneContent很大,即使我正在设置对话框的尺寸。在我的CSS中手动设置大小会导致对话框组件的奇怪行为。如何让我的对话框和它的组件大小正确?
CSS:
.dijitDialogTitleBar {
height: 25px !important;
width: 150px !important;
}
.dijitDialogPaneActionBar {
height: 35px !important;
width: 150px !important;
}
.dijitDialogPaneContent {
height: 150px !important;
width: 150px !important;
}
使用Javascript:
getCellWidgetConnects: function(cellWidget, cell){
// return an array of connection arguments
return [
[cellWidget.startStopBtn, 'onClick', function(e){
require(["dijit/ConfirmDialog","gridx/Grid", "dojo/domReady!"], function(ConfirmDialog,Grid){
var feedName = grid.model.store.get(cell.row.id).feedname;
var dContent = "Starting: " + feedName + "?";
myDialog = new ConfirmDialog({
title: "Confirm Start",
content: dContent,
style: "overflow:auto; width: 200px; height: 150px;", // height 150px works for the buttons
onExecute:function(){ //Callback function
console.log("Event Started");
restServices.sendStatusChangeStartStop(cell.row.id);
},
onCancel:function(){
console.log("Event Cancelled")
}
});
myDialog.show();
});
}]
];
}
答案 0 :(得分:1)
ConfirmDialog应自动调整大小以适合视口,而无需任何自定义应用程序CSS。
可能你只需要获得一个新版本的dojo。这听起来像我在https://bugs.dojotoolkit.org/ticket/18316中修复的错误。