This topic is locked

Size of text box in the edit page

5/6/2004 7:03:51 AM
ASPRunnerPro General questions
author

The size of the text boxes in the edit page is very long. where can I define their size?
Thanks

Sergey Kornilov admin 5/6/2004

Hi,
You need to proceed to the formatting tab in ASPRunner, set Edit as type for this field to Text field, click on Change ... and set field size (in characters).

500107 5/6/2004

Thanks,

After finishing with the application, can it be edited in the code?
Thanks again

Sergey Kornilov admin 5/6/2004

Sure,
after ASP code generated you can change it in include\..._aspfunctions.asp file in function GetEditParams.

500108 5/9/2004

In this function, how do I specify the size?
Thanks again

Sergey Kornilov admin 5/9/2004

Here is how it should look like:

function GetEditParams(strField)

 if strField="ContactName" then GetEditParams= " maxlength=30  size=20 " end if

end function

500109 5/10/2004

Thanks a lot