Hello!
I am new to ChronoForms and I read a lot of posts here... Thanks in advance for your good work!
Using:
Joomla! 3.4.4
ChronoForms V5
I came across a code here in the forums:
Which I was planning to use it for liberating a textfield (urlerror_answer) if the value of the dropdown (urlerror_drop) list would be "Ja".
My settings are as follows:
Dropdown list: http://prntscr.com/8pp60v
Textfield: http://prntscr.com/8pp68i
Both have "Required: Yes"
Setup: http://prntscr.com/8pp6tu
Unfortunately it does not work😟
I read about a built-in event manager in V5 (https://www.chronoengine.com/forums/posts/t99165/p344913/combo-the-checkbox.html#p344913) but did not found any documentation about this function.
I would appreciate a little help or just links to some comprehensive documentation.
Thanks!
I am new to ChronoForms and I read a lot of posts here... Thanks in advance for your good work!
Using:
Joomla! 3.4.4
ChronoForms V5
I came across a code here in the forums:
window.addEvent('domready', function() {
var select, other;
select = $('urlerror_drop');
other = $('urlerror_answer');
switchOther();
select.addEvent('change', switchOther);
function switchOther() {
if ( select.value == 'Ja' ) {
other.disabled = false;
} else {
other.value = '';
other.disabled = true;
}
}
});
Which I was planning to use it for liberating a textfield (urlerror_answer) if the value of the dropdown (urlerror_drop) list would be "Ja".
My settings are as follows:
Dropdown list: http://prntscr.com/8pp60v
Textfield: http://prntscr.com/8pp68i
Both have "Required: Yes"
Setup: http://prntscr.com/8pp6tu
Unfortunately it does not work😟
I read about a built-in event manager in V5 (https://www.chronoengine.com/forums/posts/t99165/p344913/combo-the-checkbox.html#p344913) but did not found any documentation about this function.
I would appreciate a little help or just links to some comprehensive documentation.
Thanks!