mike
|
| Posted: 04/27/2003, 8:28 AM |
|
Hi,
i need a link after a textbox. i have put the the following code into the "before show insert event" and the fieldtype is label.
$fldwv_date = $fldwv_date ."<input type='text' name='wv_date' maxlength='10' value='' size='18'><a href='http://www.test.de'>test</a>";
the problem is, that from now on the value is not put into the database...
iam using php4 and mysql ...
thx mike
|
|
|
 |
RonB
|
| Posted: 04/27/2003, 9:22 AM |
|
Create a label and place it behind the textbox. Use the before show event to set the value of the link if it's dynamic. The reason why the textbox is not responding is because you create it in an event so it's no longer atached to any field.If the link is not dynamic but always the same. just hardcode it in html.
Ron
|
|
|
 |
|