This topic is locked

Displaying the Text Area in more then one row

7/17/2003 1:28:11 PM
ASPRunnerPro General questions
swat author

How can I display my data (max 200 char) using more than one row , It displays right now in one column and one row but extends the column so it doesnt look nice in browser ...

any ideas
thanks all
swat

Sergey Kornilov admin 7/17/2003

Hi,
You can restrict width of specific column on the list page. In this case your text will be displayed in multiple rows.
In ..._list.asp file find sub WriteTableHeader. Find your column and set desired width.
Best regards

Sergey Kornilov

500053 7/31/2003


<TD>

<table><tr><td><a href="incident_list.asp" onClick="java script:

document.forms.frmAdmin.action.value = 'OrderBy';

document.forms.frmAdmin.orderby.value = '<%="problem"%>';

document.forms.frmAdmin.submit(); return false; "><%=Label("problem")%>

</td>

<%

if Request.Form("orderby")="problem" and strOrderImage<>"" then

Response.Write "<td><img src=images/" & strOrderImage & " border=0></td>"

end if

%>

</tr></table>

</TD>
[color=blue]

where would i put the table width and what would it look like?

Thanks

Sergey Kornilov admin 7/31/2003

Joe,
try this:

<TD width=300>

<table><tr><td><a href="incident_list.asp" onClick="java script:

document.forms.frmAdmin.action.value = 'OrderBy';

document.forms.frmAdmin.orderby.value = '<%="problem"%>';

document.forms.frmAdmin.submit(); return false; "><%=Label("problem")%>

</td>

<%

if Request.Form("orderby")="problem" and strOrderImage<>"" then

Response.Write "<td><img src=images/" & strOrderImage & " border=0></td>"

end if

%>

</tr></table>

</TD>


Best regards,

Sergey Kornilov

Joe F 7/31/2003

Sergey,

I tried the table width=300 and nothing changed. I actually tried it on several of the colums and nothing. I'll keep trying.

I want to purchase this software, but when I click on buy nothing happens and I eventually get a page not found error. Is your site up and working?
Joe