Hi,
I’ll add the showMaximized icon in the header in the next version, but if you like to override it now you can add this snippet to your Custom JS:
spjs.vLookup.openInDialog = function (URL, fin, rAll) {
var options = {
"allowMaximize":true,
"showMaximized":true,
"showClose":true
};
SP.UI.ModalDialog.commonModalDialogOpen(URL,options, function(result){
if (spjs.vLookup.data.isListView) {
if (result === 1) {
location.href = location.href;
}
} else {
spjs.vLookup._init(fin, rAll);
if (typeof vlookupChildViewOrEditCallback !== "undefined") {
vlookupChildViewOrEditCallback(fin, result);
}
}
});
};
I have added in the “showMaximized”:true parameter also, but this will not be set to true in the next version – only the icon for manually expanding to full screen will be show.
Alexander