WebDialog and OSX - resizeable regardless?
-
I'm trying to make a WebDialog non-resizable, but under OSX it seems it's still able to resize itself.
-
setting max and min use to work, you have to do all 4 from memory...
and resize needs to be set to FALSEjust checked and this still works
wwhdlg.max_height = 140 wwhdlg.min_height = 140 wwhdlg.max_width = 140 wwhdlg.min_width = 140
john
-
Cheers! Another item for the Lost Manual!
-
Nice one driven.
Just remember this is not supported by SU6, so make sure you predicate it with version_number.
Adam
-
@adamb said:
Nice one driven.
Just remember this is not supported by SU6, so make sure you predicate it with version_number.
Adam
Or - as I prefer - by using
.respond_to?
to instead check if the feature exists. No mucking about with version numbers.
Advertisement