Answers for "serenity.is change dialog width"

1

serenity.is change dialog width

// In MyEntityDialog.ts
protected onDialogOpen(): void {
	$(".s-MyModule-MyEntityDialog").width("820px");
    super.onDialogOpen();
}
// or in .less file
.s-MyModule-MyEntityDialog {
    > .size {
        width: 820px;
    }
}
Posted by: Guest on September-24-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language