inherit
265444
0
Oct 8, 2024 8:44:24 GMT -8
kamipanda
18
November 2021
kamipanda
|
Post by kamipanda on Aug 30, 2024 8:17:03 GMT -8
Is there a way to set the size of the dialog created by pb.member.select? Putting {width: 200} into the options parameter, like I would with pb.window.dialog, didn't seem to do anything.
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,017
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Sept 4, 2024 2:35:02 GMT -8
Is there a way to set the size of the dialog created by pb.member.select? Putting {width: 200} into the options parameter, like I would with pb.window.dialog, didn't seem to do anything. The API passes down only certain options to the base jQuery dialog, but you should be able to resize after the fact using the method mentioned here$(document).on('dialogopen', '#user-search-dialog', function(){ $(this).dialog('option','height',1200); $(this).dialog('option','position','static') });
|
|
inherit
265444
0
Oct 8, 2024 8:44:24 GMT -8
kamipanda
18
November 2021
kamipanda
|
Post by kamipanda on Sept 4, 2024 3:49:07 GMT -8
Thank you! That's exactly what I was looking for. I'll even be able to resize some other windows with that as an added benefit.
|
|