- LSformElement_boolean : Ajout d'un LStip sur le bouton clear.

This commit is contained in:
Benjamin Renard 2008-11-10 02:27:38 +00:00
parent 9046b96b4c
commit 4d99dc8d3f
2 changed files with 9 additions and 2 deletions

View file

@ -45,6 +45,13 @@ class LSformElement_boolean extends LSformElement {
function getDisplay(){
$return = $this -> getLabelInfos();
if (!$this -> isFreeze()) {
// Help Infos
$GLOBALS['LSsession'] -> addHelpInfos(
'LSformElement_boolean',
array(
'clear' => _('Effacer le choix.')
)
);
$GLOBALS['LSsession'] -> addJSscript('LSformElement_boolean.js');
}
$return['html'] = $this -> fetchTemplate(

View file

@ -8,13 +8,13 @@ var LSformElement_boolean = new Class({
var btn = new Element('img');
btn.setProperties({
src: varLSdefault.imagePath('clear.png'),
alt: 'Reset',
title: 'Reset'
alt: 'Clear'
});
btn.addClass('btn');
btn.setStyle('vertical-align','top');
btn.addEvent('click',this.onClearBtnClick.bind(this,btn));
btn.injectInside(el);
varLSdefault.addHelpInfo(btn,'LSformElement_boolean','clear');
}, this);
},