This topic is locked

Change Lookup Wizard Size

12/16/2024 6:15:33 PM
PHPRunner General questions
P
pauls99 author

Hello,

I am using a Lookup Wizard in my application. Right now, the wizard window is too small to display all the data, requiring the user to manually adjust the window size every time. This can get cumbersome, especially if the user is using a track pad. Can I set the window default to something larger, or even have it take up the whole screen? I found this related post:

https://asprunner.com/forums/topic/13159-form-field-size-of-lookup-wizard

but I could not find the value that the answer was referrring to.

Thank you.

Sergey Kornilov admin 12/17/2024

That old post is 15 years old and, of course, doesn't apply today.

What you looking for can be achieved with the help of CSS. See CSS examples here:
https://xlinesoft.com/phprunner/docs/customizing_styles_examples.htm

Also there are two videos that explain in depth the CSS topic:
https://www.youtube.com/watch?v=_DmMYRCUtU8
https://www.youtube.com/watch?v=yFnD38oslIc

P
pauls99 author 1/14/2025

Thank you for pointing me in that direction, I've tried to change the CSS as follows:

.modal-content {
width: 1130px;
}

.modal-header {
width: 1128px;
}

.modal-body {
width: 1128px;
}

.modal-footer {
width: 1128px;
}

.modal-dialog {
width: 1128px;
}

This worked somewhat, but when I inspect the various div elements in my web browser only some of the divs (model-header and model-footer) are modified. Am I on the right track?