Is there a way to make the modal form of a child list wider?
Hello @smithme,
Do you mean the size of the dialog box of the 'List or Library' control?
If yes, please use the following JS code in JS editor to control the size of dialog window. :
fd.spRendered(function(){
//set width and height:
fd.control('SPDataTable0').dialogOptions = {
width: 1280,
height: 720
}
});
You can find additional information in our JS controls documentation.
I figured out what was going on. In the Parent Grid there is a Width property that was set to 6. I changed that to 12 and there is now enough room for the controls. Thanks.
1 Like