ASP.net
Awesome
Learn
Forum
Buy
Demos
Sign In
☾
☀
Switch to
Dark
Light
Mode
this site works best with javascript enabled
Ask Question
Size of Popup window
Title:
B
I
{code}
?
Trying to make a Popup larger. I have tried setting the following parameeters: onclick="awe.open('createAssignmentsGrid', { params: { Width: 900px } });" and onclick="awe.open('createAssignmentsGrid', { params: { Fullscreen: true } });" Neither change the size of the Popup. This is the div that needs to change but none of the params I set affect the output. <div class="opcont opc" tabindex="-1" data-i="createAssignmentsGrid" style="overflow-y: auto;z-index: 1;left: 390.5px;top: 312px;max-width: 1399px;min-width: 652px;position: fixed;"> Am I using the parms correctly? If not, what is the correct way?
Save Changes
Cancel
Michael W Ritchie
asked at 09 Aug 2017
you can set the width and fullscreen when you call `.InitPopup().Width...`, you can also set width on a div in the content that you're loading and popup will expand automatically as for awe.open it should be `awe.open('createAssignmentsGrid', { w: 900 });`
at 09 Aug 2017
Omu
Answers
please
Sign In
to leave an answer
By accessing this site, you agree to store cookies on your device and disclose information in accordance with our
cookie policy
and
privacy policy
.
OK