hi,
I have been trying to create greyed out text box when user is selecting dropdown box. While he/she selects "other" option the text box is available.
I tried to follow http://www.packtpub.com/article/adding-features-to-joomla-form-using-chronoforms
but... I am not too sure where I should put the code?
thanks for help!🙂
I have been trying to create greyed out text box when user is selecting dropdown box. While he/she selects "other" option the text box is available.
I tried to follow http://www.packtpub.com/article/adding-features-to-joomla-form-using-chronoforms
but... I am not too sure where I should put the code?
window.addEvent('domready', function() {
$('hearabout').addEvent('change', function() {
if ($('hearabout').value == 'Other' ) {
$('other').disabled = false;
} else {
$('other').disabled = true;
}
});
$('other').disabled = true;
});
thanks for help!🙂
hi Bob, thanks for your help on this!🙂
However, I still have one issue, I am not able to see "Load JS action" I am using ChronoForms 4.0 RC3.5.1 26.Sep.2012
here is a screenshot:
However, I still have one issue, I am not able to see "Load JS action" I am using ChronoForms 4.0 RC3.5.1 26.Sep.2012
here is a screenshot:

This topic is locked and no more replies can be posted.