• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

turning NORESIZE on and off in Firefox

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

I have an application using frames than in most cases I have NORESIZE turned on (to lock the sizes). In one area of the application, I have to turn this off to let the user resize two of the subframes.

My frame sets are defined as:



I'm turning resize on with:



This is working just fine in IE, but not in Firefox.

Can anyone enlighten me as to the error of my ways?

[ May 31, 2007: Message edited by: J P Nelson ]
[ May 31, 2007: Message edited by: J P Nelson ]
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I never use getElementsByName

ids are so much nicer since they are singular with no array

you should use

myFrameObj.noResize = false;

Eric
 
J P Nelson
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Eric,

I've tried the getElementById call as well with the same results. It works fine in IE but not in Firefox.

I will try the direct assignment instead of setAttribute and see what that does.

TIA,

Joe

FOLLOW-UP

I've tried the following variations with the same result:



and


[ May 31, 2007: Message edited by: J P Nelson ]
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic