mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-13 05:53:03 +01:00
35 lines
972 B
JavaScript
35 lines
972 B
JavaScript
|
var LSformElement_select = new Class({
|
||
|
initialize: function(){
|
||
|
this.initialiseLSformElement_select();
|
||
|
},
|
||
|
|
||
|
initialiseLSformElement_select: function() {
|
||
|
$$('select.LSform').each(function(el) {
|
||
|
var btn = new Element('img');
|
||
|
btn.setProperties({
|
||
|
src: 'templates/images/clear.png',
|
||
|
alt: 'Reset',
|
||
|
title: 'Reset'
|
||
|
});
|
||
|
btn.addClass('btn');
|
||
|
btn.setStyle('vertical-align','top');
|
||
|
btn.addEvent('click',this.onClearBtnClick.bind(this,btn));
|
||
|
btn.injectAfter(el);
|
||
|
}, this);
|
||
|
},
|
||
|
|
||
|
onClearBtnClick: function(btn) {
|
||
|
var select = btn.getPrevious();
|
||
|
this.resetSelect(select);
|
||
|
},
|
||
|
|
||
|
resetSelect: function(select) {
|
||
|
for(var i=0;i<select.length;i++) {
|
||
|
select[i].selected=false;
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
window.addEvent(window.ie ? 'load' : 'domready', function() {
|
||
|
varLSformElement_select = new LSformElement_select();
|
||
|
});
|