2014-11-25 00:07:21 +01:00
|
|
|
var LSformElement_supannLabeledValue = new Class({
|
|
|
|
initialize: function(){
|
|
|
|
this.fields = [];
|
|
|
|
this.initialiseLSformElement_supannLabeledValue();
|
|
|
|
},
|
2020-04-29 15:54:21 +02:00
|
|
|
|
2014-11-25 00:07:21 +01:00
|
|
|
initialiseLSformElement_supannLabeledValue: function(el) {
|
|
|
|
if (!$type(el)) {
|
|
|
|
el = document;
|
|
|
|
}
|
|
|
|
el.getElements('ul.LSformElement_supannLabeledValue').each(function(ul) {
|
|
|
|
this.fields[ul.id] = new LSformElement_supannLabeledValue_field(ul);
|
|
|
|
}, this);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
window.addEvent(window.ie ? 'load' : 'domready', function() {
|
|
|
|
varLSformElement_supannLabeledValue = new LSformElement_supannLabeledValue();
|
|
|
|
});
|