Touch UI dialog | Set height and width
Also, resizing the dialog is not possible using mouse. Is there any configuration for this?
Also, resizing the dialog is not possible using mouse. Is there any configuration for this?
Here is the answer to your question - you can control via code:
(function ($, $document) {
"use strict";
function adjustLayoutHeight(){
//with only two selects, the second select drop down is not visible when expanded, so adjust the layout height
//fixedcolumns i guess doesn't support property height, so fallback to jquery
$(".coral-FixedColumn-column").css("height", "18rem");
}
$document.on("dialog-ready", function() {
adjustLayoutHeight();
});
})($, $(document));
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.