I use this:
function addBmw(){
tel = $(‘bmws’).select(‘div[id^=bmw]’).size(); // for a unique id
bmw = $F(‘sel_bmw’).split(’|’); // selected bmw => 54|Valery
bmw_line = ‘
bmw_line += ’ ';
bmw_line += ‘’;
bmw_line += ’ ’ +
bmw[1] + ‘’;
bmw_line += ‘
Element.insert(‘bmws’, {bottom: bmw_line});
}
function delBmw(bmw_id){
Element.remove(‘bmw’ + bmw_id)
}
With this client-side javascript I add input tags to a webpage, but when
I submit the page, there are no parameters created for the input fields,
when it is entering the controller???
Someone knows an answer? (or is it just working as designed?)
TIA, Adrie