vandalen
|
| Posted: 09/13/2002, 3:07 PM |
|
Hi Everyone,
I'm trying to display a url parameter on a "readonly" textbox. Can not figure out how to do it.
|
|
|
 |
Nicole
|
| Posted: 09/16/2002, 6:43 AM |
|
Hello,
Catch the parameter passed through url and assign it to textbox field in field Before Show event. Make textbox readonly in html view. Hre is sample PHP code for the field located inside form:
global $form_name;
$form_name->field_name->SetVale(CCGetParam("param_name", "param default value"));
|
|
|
 |
vandalen
|
| Posted: 09/16/2002, 8:36 PM |
|
Hi Nicole,
you gave me an Idea and it worked. Thanks.
|
|
|
 |
|