ldapsaisie/trunk/includes/js/LSformElement_url.js
Benjamin Renard ab7120b589 - LSform :
-> Redimentionnement des dt pour laisser plus de place aux labels
- LSformElement_boolean, LSformElement_select : Ajout d'un bouton clear
- L'ajout des boutons javascript a été déporté dans le code javascript :
  -> LSformElement_url
  -> LSformElement_mail
  -> LSformElement_rss
  -> LSformElement_xmp
- LSformElement_select_object
  -> Activation du champ de formulaire directement dans le javascript
2008-09-27 00:55:58 +00:00

79 lines
2.3 KiB
JavaScript

var LSformElement_url = new Class({
initialize: function(){
this.initialiseLSformElement_url();
if (typeof(varLSform) != "undefined") {
varLSform.addModule("LSformElement_url",this);
}
},
initialiseLSformElement_url: function(el) {
if (typeof(el) == 'undefined') {
el = document;
}
el.getElements('input.LSformElement_url').each(function(input) {
this.addBtnAfter.bind(this)(input);
}, this);
el.getElements('a.LSformElement_url').each(function(a) {
this.addBtnAfter.bind(this)(a);
}, this);
},
addBtnAfter: function(el) {
var btn_go = new Element('img');
btn_go.setProperties({
src: 'templates/images/url_go.png',
alt: 'Suivre le lien',
title: 'Suivre le lien'
});
btn_go.addClass('btn');
btn_go.injectAfter(el);
btn_go.addEvent('click',this.onGoBtnClick.bind(this,btn_go));
var btn_fav = new Element('img');
btn_fav.setProperties({
src: 'templates/images/url_add.png',
alt: 'Ajouter aux favoris',
title: 'Ajouter aux favoris'
});
btn_fav.addClass('btn');
btn_fav.injectAfter(btn_go);
btn_fav.addEvent('click',this.onAddFavoriteBtnClick.bind(this,btn_fav));
},
reinitialize: function(el) {
this.initialiseLSformElement_url(el);
},
onGoBtnClick: function(btn) {
var href = btn.getParent().getFirst().href;
if (typeof(href)=="undefined") {
href = btn.getParent().getFirst().value;
}
if (href!="") {
window.open(href,'_blank');
}
},
onAddFavoriteBtnClick: function(btn) {
var href = btn.getParent().getFirst().value;
if (typeof(href)=="undefined") {
href = btn.getParent().getFirst().href;
}
var name = btn.getParent().getFirst().title;
if (href!="") {
if (window.sidebar) {
window.sidebar.addPanel(name,href,'');
}
else if(window.external) {
window.external.AddFavorite(href,name);
}
else {
alert('Fonctionnalité pas encore supportée pour votre navigateur.');
}
}
}
});
window.addEvent(window.ie ? 'load' : 'domready', function() {
varLSformElement_url = new LSformElement_url();
});