Field Expansion in web

Hi I am from the Notes Client side,just started web development.In client we can increase the height and width of fields,how can we do this in web.

And while displaying the data the data should not come in one very big line it should scroll.Like we have a field call description in this field a large amount of text is stored but while displaying it is showing in one line.It looks very bad.

Subject: Field Expansion in web

Hi AM P,

I suppose you will have to use DHTML to resize fields on the fly. Then you get javascript code like this:

var element = document.getElementById(‘element_id’);

element.style.width = newValue + “px”;

There is plenty on this on the internet. Study this and you will be able to send pages that only contain a body tag which is filled by the javascript code.

HTH,

Joost

Subject: RE: Field Expansion in web

thanx joost.