Hello!
I have joomla 2.5 and Chronoforms V4
Is it possible to add sample text in text box? So the client could see the idea what he must write.
So is it possible to add sample text in text box?
Thanks in advance
I have joomla 2.5 and Chronoforms V4
Is it possible to add sample text in text box? So the client could see the idea what he must write.
So is it possible to add sample text in text box?
Thanks in advance
Hi sirdna,
Yes there are some ways to do this. The easiest is to add some code like this to a Custom Code action in the ON Load event before the Show HTML action:
Replace my_textarea with the name of the textarea element.
Bob
Yes there are some ways to do this. The easiest is to add some code like this to a Custom Code action in the ON Load event before the Show HTML action:
<?php
if ( !isset($form->data['my_textarea']) || !$form->data['my_textarea'] ) {
$form->data['my_textarea'] = 'Type some text like this here.';
}
?>
Replace my_textarea with the name of the textarea element.
Bob
This topic is locked and no more replies can be posted.