hi! I'm just displaying comments/text on the browser window. I have a table

<table>
<tr>
<td colspan="6">
Comments
</td>
</tr>
<tr>
   <td colspan="6">
#COMMENTS#   
   </td>
</tr>
</table>

The information is displayed on a pop-up modal dialog box. This is how I call it.

var mouseX = clicked.screenX;
var mouseY = clicked.screenY ;
var numheight = screen.height;
var numwidth = screen.width;
var sHeight = numheight + 'px';
var sWidth = numwidth + 'px';
if (mouseX > numwidth) {var sXPos = (mouseX - numwidth)+'px';}
else {var sXPos = mouseX; }
if (mouseY > numheight) {var sYPos = mouseY +'px';}
else {var sYPos = mouseY; }

var features = "resizable: yes; help: no; status: no; scroll: yes; dialogHeight:" + sHeight +"; dialogWidth:" + sWidth + "; dialogLeft:" + sXPos + "; dialogTop:"+ sYPos + "; "

showModalDialog('printthis.cfm?jobNo=1' , features);

I'm permitting page scrolling; if I view a job with really lengthy comments, since the width and height of the pop-up window is the size of the monitor, with the windows taskbar set to "dispaly on top of other windows", I can't see the the horizontal scroller.

If word-wrapping is a big ask, can you suggest me how to display the horizontal bar just above the windows task bar?

I hope I'm making sense.

Regards,
cfcoder

> cf coder wrote:
>
> >I'm trying to word wrap some text. I don't if there is a client side
> tag that does this for you. Can someone please point me to the right
> direction
> >  
> >
>
> What sort of word-wrapping do you need?
> --
> *Damien McKenna* - Web Developer - [EMAIL PROTECTED]
> <mailto:[EMAIL PROTECTED]>
> The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
> "Nothing endures but change." -
Heraclitus
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Reply via email to