Array to SELECT


/ Published in: JavaScript
Save to your folder(s)

This function automates the creation of the s of a element. It's ideal for your AJAX apps when you create display elements using Javascript

It accepts to different kind of arrays:

An array of key:values…

var arrDirs = {
"a1":"Sede central",
"a2":"Envíos",
"a4":"Facturación",
"b1":"Sucursal"
};


An array of arrays, where each of the child arrays have the sintax 'ID': value, 'LABEL': text…

var arrDirs = {
"0":{"ID":"a1","LABEL":"Sede central"},
"1":{"ID":"a2","LABEL":"Envíos"},
"2":{"ID":"a4","LABEL":"Facturación"},
"3":{"ID":"b1","LABEL":"Sucursal"}
};

Note that the ID part can be a number or an string.

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.