50,7 → 50,7 |
}); |
|
$('#photo-placeholder').click(function(event) { |
$("#fichier").click(); |
$('#fichier').click(); |
}); |
|
$('#fichier').bind('change', function (e) { |
60,12 → 60,13 |
dataType: 'xml', // 'xml', 'script', or 'json' (expected server response type) |
resetForm: true // reset the form after successful submit |
}; |
$('#miniature').append('<img id="miniature-chargement" class="miniature" alt="chargement" src="'+CHARGEMENT_IMAGE_URL+'"/>'); |
$('#miniature').append( |
'<img id="miniature-chargement" class="miniature" alt="chargement" src="'+CHARGEMENT_IMAGE_URL+'"/>'); |
$('#ajouter-obs').attr('disabled', 'disabled'); |
if(verifierFormat($('#fichier').val())) { |
$('#form-upload').ajaxSubmit(options); |
} else { |
window.alert("Le format de fichier n'est pas supporté, les formats acceptés sont "+ $("#fichier").attr("accept")); |
window.alert("Le format de fichier n'est pas supporté, les formats acceptés sont "+ $('#fichier').attr('accept')); |
} |
return false; |
}); |
113,29 → 114,29 |
|
//+----------------------------------------------------------------------------------------------------------+ |
// GOOGLE MAP |
var map; |
var marker; |
var latLng; |
var geocoder; |
var map, |
marker, |
latLng, |
geocoder; |
|
$(document).ready(function() { |
initialiserGoogleMap(); |
|
// Autocompletion du champ adresse |
$("#carte-recherche").on('focus', function() { |
$('#carte-recherche').on('focus', function() { |
$(this).select(); |
}); |
$("#carte-recherche").on('mouseup', function(event) {// Pour Safari... |
$('#carte-recherche').on('mouseup', function(event) {// Pour Safari... |
event.preventDefault(); |
}); |
|
$("#carte-recherche").keypress(function(e) { |
$('#carte-recherche').keypress(function(e) { |
if (e.which == 13) { |
e.preventDefault(); |
} |
}); |
|
$("#carte-recherche").autocomplete({ |
$('#carte-recherche').autocomplete({ |
//Cette partie utilise geocoder pour extraire des valeurs d'adresse |
source: function(request, response) { |
|
162,7 → 163,7 |
} |
}); |
|
$("#geolocaliser").on('click', geolocaliser); |
$('#geolocaliser').on('click', geolocaliser); |
|
google.maps.event.addListener(marker, 'dragend', surDeplacementMarker); |
|
171,22 → 172,24 |
|
function initialiserGoogleMap(){ |
// Carte |
var latLng = new google.maps.LatLng(46.30871, 2.54395);// Centre de la France |
var zoomDefaut = 5; |
|
var options = { |
var latLng = new google.maps.LatLng(46.30871, 2.54395),// Centre de la France |
zoomDefaut = 5; |
options = { |
zoom: zoomDefaut, |
center: latLng, |
mapTypeId: google.maps.MapTypeId.HYBRID, |
mapTypeControlOptions: { |
mapTypeIds: ['OSM', google.maps.MapTypeId.ROADMAP, google.maps.MapTypeId.HYBRID, google.maps.MapTypeId.SATELLITE, google.maps.MapTypeId.TERRAIN]} |
mapTypeIds: ['OSM', |
google.maps.MapTypeId.ROADMAP, |
google.maps.MapTypeId.HYBRID, |
google.maps.MapTypeId.SATELLITE, |
google.maps.MapTypeId.TERRAIN]} |
}; |
|
// Ajout de la couche OSM à la carte |
osmMapType = new google.maps.ImageMapType({ |
getTileUrl: function(coord, zoom) { |
return "http://tile.openstreetmap.org/" + |
zoom + "/" + coord.x + "/" + coord.y + ".png"; |
return 'http://tile.openstreetmap.org/' + zoom + '/' + coord.x + '/' + coord.y + '.png'; |
}, |
tileSize: new google.maps.Size(256, 256), |
isPng: true, |
214,11 → 217,13 |
initialiserMarker(latLng); |
|
// Tentative de geocalisation |
|
if (navigator.geolocation) { |
navigator.geolocation.getCurrentPosition(function(position) { |
var latitude = position.coords.latitude; |
var longitude = position.coords.longitude; |
var latitude = position.coords.latitude, |
longitude = position.coords.longitude; |
latLng = new google.maps.LatLng(latitude, longitude); |
|
deplacerMarker(latLng); |
}); |
} |
233,11 → 238,12 |
deplacerMarker(event.latLng); |
} |
|
function geolocaliser() { |
var latitude = $('#latitude').val(); |
var longitude = $('#longitude').val(); |
function geolocaliser(event) { |
var latitude = $('#latitude').val(), |
longitude = $('#longitude').val(); |
latLng = new google.maps.LatLng(latitude, longitude); |
deplacerMarker(latLng); |
arreter(event); |
} |
|
function initialiserMarker(latLng) { |
244,6 → 250,8 |
if (marker != undefined) { |
marker.setPosition(latLng); |
map.setCenter(latLng); |
mettreAJourMarkerPosition(latLng); |
trouverCommune(latLng); |
} |
} |
|
257,8 → 265,8 |
} |
|
function mettreAJourMarkerPosition(latLng) { |
var lat = latLng.lat().toFixed(5); |
var lng = latLng.lng().toFixed(5); |
var lat = latLng.lat().toFixed(5), |
lng = latLng.lng().toFixed(5); |
remplirChampLatitude(lat); |
remplirChampLongitude(lng); |
} |
275,52 → 283,53 |
|
function trouverCommune(pos) { |
$(function() { |
|
var url_service = SERVICE_NOM_COMMUNE_URL; |
|
var urlNomCommuneFormatee = url_service.replace('{lat}', pos.lat()).replace('{lon}', pos.lng()); |
var url_service = SERVICE_NOM_COMMUNE_URL, |
urlNomCommuneFormatee = url_service.replace('{lat}', pos.lat()).replace('{lon}', pos.lng()); |
$.ajax({ |
url : urlNomCommuneFormatee, |
type : "GET", |
dataType : "jsonp", |
type: 'GET', |
dataType: 'jsonp', |
beforeSend : function() { |
$(".commune-info").empty(); |
$("#dialogue-erreur .alert-txt").empty(); |
$('.commune-info').empty(); |
$('#dialogue-erreur .alert-txt').empty(); |
}, |
success : function(data, textStatus, jqXHR) { |
$(".commune-info").empty(); |
$("#commune-nom").append(data.nom); |
$("#commune-code-insee").append(data.codeINSEE); |
$("#marqueur-commune").data('commune', {'nom' : data.nom, 'codeInsee' : data.codeINSEE}); |
$('.commune-info').empty(); |
$('#commune-nom').append(data.nom); |
$('#commune-code-insee').append(data.codeINSEE); |
$('#marqueur-commune').data('commune', {'nom' : data.nom, 'codeInsee' : data.codeINSEE}); |
}, |
statusCode : { |
500 : function(jqXHR, textStatus, errorThrown) { |
if (DEBUG) { |
$("#dialogue-erreur .alert-txt").append('<p id="msg">Un problème est survenu lors de l\'appel au service fournissante le nom des communes.</p>'); |
$('#dialogue-erreur .alert-txt').append('<p id="msg">Un problème est survenu lors de l\'appel au service fournissante le nom des communes.</p>'); |
reponse = jQuery.parseJSON(jqXHR.responseText); |
var erreurMsg = ""; |
if (reponse != null) { |
$.each(reponse, function (cle, valeur) { |
erreurMsg += valeur + "<br />"; |
erreurMsg += valeur + '<br />'; |
}); |
} |
|
$("#dialogue-erreur .alert-txt").append('<p class="msg-erreur">Erreur 500 : '+errorThrown+"<br />"+erreurMsg+'</p>'); |
$('#dialogue-erreur .alert-txt').append( |
'<p class="msg-erreur">Erreur 500 : '+errorThrown+'<br />'+erreurMsg+'</p>'); |
} |
} |
}, |
error : function(jqXHR, textStatus, errorThrown) { |
if (DEBUG) { |
$("#dialogue-erreur .alert-txt").append('<p class="msg">Une erreur Ajax est survenue lors de la transmission de vos observations.</p>'); |
$('#dialogue-erreur .alert-txt').append( |
'<p class="msg">Une erreur Ajax est survenue lors de la transmission de vos observations.</p>'); |
reponse = jQuery.parseJSON(jqXHR.responseText); |
var erreurMsg = ""; |
var erreurMsg = ''; |
if (reponse != null) { |
$.each(reponse, function (cle, valeur) { |
erreurMsg += valeur + "<br />"; |
erreurMsg += valeur + '<br />'; |
}); |
} |
|
$("#dialogue-erreur .alert-txt").append('<p class="msg-erreur">Erreur Ajax : '+errorThrown+' (type : '+textStatus+') <br />'+erreurMsg+'</p>'); |
$('#dialogue-erreur .alert-txt').append( |
'<p class="msg-erreur">Erreur Ajax : '+errorThrown+' (type : '+textStatus+') <br />'+erreurMsg+'</p>'); |
} |
}, |
complete : function(jqXHR, textStatus) { |
402,6 → 411,7 |
transformerEnSlider('#resistance-traitement-phyto'); |
transformerEnSlider('#vitesse-croissance'); |
|
// Afficher/Cacher champs cachés par défaut |
$('#periodicite-traitement-phyto').on('change', function() { |
if ($(this).val() === 'jamais') { |
$('#datp-zone').removeClass('hidden'); |
423,12 → 433,13 |
$('#btn-aide').on('click', basculerAffichageAide); |
|
$('#prenom').on('change', formaterPrenom); |
|
$('#nom').on('change', formaterNom); |
|
configurerDatePicker('#date'); |
configurerDatePicker('#date-arret-traitement-phyto'); |
|
ajouterAutocompletionNoms(); |
|
configurerFormValidator(); |
definirReglesFormValidator(); |
|
453,8 → 464,23 |
event.preventDefault(); |
defilerMiniatures($(this)); |
}); |
|
$('.dropdown-menu input, .dropdown-menu label').on('click', function(event) { |
event.stopPropagation(); |
}); |
|
$('input#hauteur-plante').on('blur', function() { |
// if there's a bad value |
var valeur = $(this).val(); |
console.log(valeur); |
if (! valeur.match(/^[0-9]+$/)) { |
// replace it with nothing |
var nouvelleValeur = valeur.replace(/[^0-9]/g, ''); |
$(this).val(nouvelleValeur); |
} |
}); |
}); |
|
function transformerEnSlider(selector) { |
$(selector).each(function(index, el) { |
// hide the element |
511,22 → 537,13 |
'Format : jj/mm/aaaa. Date incomplète, utiliser 0, exemple : 00/12/2011.'); |
|
$.extend($.validator.defaults, { |
errorClass: 'control-group error', |
validClass: 'control-group success', |
errorElement: 'span', |
highlight: function(element, errorClass, validClass) { |
if (element.type === 'radio') { |
this.findByName(element.name).parent('div').parent('div').removeClass(validClass).addClass(errorClass); |
} else { |
$(element).parent('div').parent('div').removeClass(validClass).addClass(errorClass); |
} |
highlight: function(element) { |
$(element).closest('.control-group').removeClass('success').addClass('error'); |
}, |
unhighlight: function(element, errorClass, validClass) { |
if (element.type === 'radio') { |
this.findByName(element.name).parent('div').parent('div').removeClass(errorClass).addClass(validClass); |
} else { |
if ($(element).attr('id') == 'taxon') { |
if ($('#taxon').val() != '') { |
success: function(element) { |
element.text('OK!').addClass('valid') |
.closest('.control-group').removeClass('error').addClass('success'); |
if (element.attr('id') == 'taxon' && $('#taxon').val() != '') { |
// Si le taxon n'est pas lié au référentiel, on vide le data associé |
if($('#taxon').data('value') != $('#taxon').val()) { |
$('#taxon').data('numNomSel', ''); |
533,17 → 550,10 |
$('#taxon').data('nomRet', ''); |
$('#taxon').data('numNomRet', ''); |
$('#taxon').data('nt', ''); |
$('#taxon').data('famille', '); |
$('#taxon').data('famille', ''); |
} |
$('#taxon-input-groupe').removeClass(errorClass).addClass(validClass); |
$(element).next('span.help-inline').remove(); |
} |
} else { |
$(element).parent('div').parent('div').removeClass(errorClass).addClass(validClass); |
$(element).next('span.help-inline').remove(); |
} |
} |
} |
}); |
} |
|
569,7 → 579,7 |
$('#form-obs').validate({ |
rules: { |
date: 'dateCel', |
taxon: 'required' |
'taxon-liste': 'required' |
} |
}); |
} |
596,16 → 606,16 |
} |
|
function formaterPrenom() { |
var prenom = new Array(); |
var mots = $(this).val().split(' '); |
var prenom = new Array(), |
mots = $(this).val().split(' '); |
for (var i = 0; i < mots.length; i++) { |
var mot = mots[i]; |
if (mot.indexOf('-') >= 0) { |
var prenomCompose = new Array(); |
var motsComposes = mot.split('-'); |
var prenomCompose = new Array(), |
motsComposes = mot.split('-'); |
for (var j = 0; j < motsComposes.length; j++) { |
var motSimple = motsComposes[j]; |
var motMajuscule = motSimple.charAt(0).toUpperCase() + motSimple.slice(1); |
var motSimple = motsComposes[j], |
motMajuscule = motSimple.charAt(0).toUpperCase() + motSimple.slice(1); |
prenomCompose.push(motMajuscule); |
} |
prenom.push(prenomCompose.join('-')); |
621,7 → 631,7 |
if ($(this).hasClass('btn-warning')) { |
$('[rel=tooltip]').tooltip('enable'); |
$(this).removeClass('btn-warning').addClass('btn-success'); |
$('#btn-aide-txt', this).text('Désactiver l'aide'); |
$('#btn-aide-txt', this).text("Désactiver l'aide"); |
} else { |
$('[rel=tooltip]').tooltip('disable'); |
$(this).removeClass('btn-success').addClass('btn-warning'); |
635,7 → 645,7 |
} |
|
function basculerAffichageCoord() { |
$('a.afficher-coord').toggle(); |
$('.afficher-coord-action').toggle(); |
$('#coordonnees-geo').toggle('slow'); |
//valeur false pour que le lien ne soit pas suivi |
return false; |
649,8 → 659,7 |
afficherObs(); |
stockerObsData(); |
supprimerMiniatures(); |
$('#taxon').val(''); |
$('#taxon').data('numNomSel', undefined); |
$('#taxon').val('').data('numNomSel', undefined).removeClass('ns-retenu'); |
} else { |
afficherPanneau('#dialogue-form-invalide'); |
} |
657,6 → 666,18 |
} |
|
function afficherObs() { |
var numNomSel = ($('#taxon-liste').val() == '?') ? $('#taxon').data('numNomSel') : $('#taxon-liste').val(), |
taxon = ($('#taxon-liste').val() == '?') ? $('#taxon').val() : taxons[numNomSel]['nom_sel'], |
referentiel = (numNomSel == undefined) ? '' : '['+NOM_SCI_PROJET+']', |
commune = $('#commune-nom').text(), |
codeInsee = $('#commune-code-insee').text(), |
lat = $('input[name="latitude"]').val(), |
lng = $('input[name="longitude"]').val(), |
date = $('#date').val(), |
site = $('#station').val(), |
milieux = getMilieux(), |
notes = $('#notes').val(); |
|
$('#liste-obs').prepend( |
'<div id="obs'+obsNbre+'" class="row-fluid obs obs'+obsNbre+'">'+ |
'<div class="span12">'+ |
674,22 → 695,21 |
'<div class="span9">'+ |
'<ul class="unstyled">'+ |
'<li>'+ |
'<span class="nom-sci">'+$("#taxon").val()+'</span> '+ |
ajouterNumNomSel()+'<span class="referentiel-obs">'+ |
($("#taxon").data("numNomSel") == undefined ? '' : '['+NOM_SCI_PROJET+']')+'</span>'+ |
'<span class="nom-sci">' + taxon + '</span> ' + |
formaterNumNomSel(numNomSel)+ |
'<span class="referentiel-obs">' + referentiel + '</span>' + |
' observé à '+ |
'<span class="commune">'+$('#commune-nom').text()+'</span> '+ |
'('+$('#commune-code-insee').text()+') ['+$("#latitude").val()+' / '+$("#longitude").val()+']'+ |
'<span class="commune">' + commune + '</span> ' + |
'(' + codeInsee + ') [' + lat +' / ' + lng + ']' + |
' le '+ |
'<span class="date">'+$("#date").val()+'</span>'+ |
'<span class="date">' + date + '</span>' + |
'</li>'+ |
'<li>'+ |
'<span>Lieu-dit :</span> '+$('#lieudit').val()+' '+ |
'<span>Station :</span> '+$('#station').val()+' '+ |
'<span>Milieu :</span> '+$('#milieu').val()+' '+ |
'<span>Site :</span> ' + site + ' ' + |
'<span>Milieu :</span> ' + milieux + ' ' + |
'</li>'+ |
'<li>'+ |
'Commentaires : <span class="discretion">'+$("#notes").val()+'</span>'+ |
'Commentaires : <span class="discretion">' + notes + '</span>'+ |
'</li>'+ |
'</ul>'+ |
'</div>'+ |
699,6 → 719,55 |
'</div>'); |
} |
|
function getMilieux() { |
var milieuxStr = '', |
milieux = []; |
$('input:checkbox[name="milieux"]:checked').each(function() { |
milieux.push($(this).val()); |
}); |
|
milieuxStr = Array.prototype.slice.call(milieux).join(', '); |
return milieuxStr; |
} |
|
function ajouterImgMiniatureAuTransfert() { |
var html = '', |
miniatures = '', |
premiere = true; |
if ($('#miniatures img').length >= 1) { |
$('#miniatures img').each(function() { |
var visible = premiere ? 'miniature-selectionnee' : 'miniature-cachee', |
css = $(this).hasClass('b64') ? 'miniature b64' : 'miniature', |
src = $(this).attr('src'), |
alt = $(this).attr('alt'); |
premiere = false; |
miniature = '<img class="'+css+' '+visible+'" alt="'+alt+'"src="'+src+'" />'; |
miniatures += miniature; |
}); |
visible = ($('#miniatures img').length > 1) ? '' : 'defilement-miniatures-cache'; |
var html = |
'<div class="defilement-miniatures">'+ |
'<a href="#" class="defilement-miniatures-gauche '+visible+'"><</a>'+ |
miniatures+ |
'<a href="#" class="defilement-miniatures-droite '+visible+'">></a>'+ |
'</div>'; |
} else { |
html = '<img class="miniature" alt="Aucune photo"src="'+PAS_DE_PHOTO_ICONE_URL+'" />'; |
} |
return html; |
} |
|
function formaterNumNomSel(numNomSel) { |
var nn = ''; |
|
if (numNomSel == undefined) { |
nn = '<span class="alert-error">[non lié au référentiel]</span>'; |
} else { |
nn = '<span class="nn">[nn'+numNomSel+']</span>'; |
} |
return nn; |
} |
|
function stockerObsData() { |
$('#liste-obs').data('obsId'+obsNbre, { |
'date' : $('#date').val(), |
813,9 → 882,9 |
$('#dialogue-obs-transaction-ko .alert-txt').append('<pre class="msg-erreur">' + erreurMsg + '</pre>'); |
$('#dialogue-obs-transaction-ko .alert-txt').append('<pre class="msg-debug">Débogage : ' + debugMsg + '</pre>'); |
} |
var hrefCourriel = "mailto:cel@tela-botanica.org?" + |
"subject=Disfonctionnement du widget de saisie " + TAG_PROJET + |
"&body=" + erreurMsg + "\nDébogage :\n" + debugMsg; |
var hrefCourriel = 'mailto:cel@tela-botanica.org?' + |
'subject=Disfonctionnement du widget de saisie ' + TAG_PROJET + |
'&body=' + erreurMsg + "\nDébogage :\n" + debugMsg; |
|
$('#dialogue-obs-transaction-ko .alert-txt').append($('#tpl-transmission-ko').clone() |
.find('.courriel-erreur') |
884,36 → 953,9 |
$('#dialogue-bloquer-creer-obs').hide(); |
} |
|
function ajouterImgMiniatureAuTransfert() { |
var html = ''; |
var miniatures = ''; |
var premiere = true; |
if ($("#miniatures img").length >= 1) { |
$("#miniatures img").each(function() { |
var visible = premiere ? 'miniature-selectionnee' : 'miniature-cachee'; |
premiere = false; |
var css = $(this).hasClass('b64') ? 'miniature b64' : 'miniature'; |
var src = $(this).attr("src"); |
var alt = $(this).attr("alt"); |
miniature = '<img class="'+css+' '+visible+'" alt="'+alt+'"src="'+src+'" />'; |
miniatures += miniature; |
}); |
visible = ($("#miniatures img").length > 1) ? '' : 'defilement-miniatures-cache'; |
var html = |
'<div class="defilement-miniatures">'+ |
'<a href="#" class="defilement-miniatures-gauche '+visible+'"><</a>'+ |
miniatures+ |
'<a href="#" class="defilement-miniatures-droite '+visible+'">></a>'+ |
'</div>'; |
} else { |
html = '<img class="miniature" alt="Aucune photo"src="'+PAS_DE_PHOTO_ICONE_URL+'" />'; |
} |
return html; |
} |
|
function defilerMiniatures(element) { |
|
var miniatureSelectionne = element.siblings("img.miniature-selectionnee"); |
var miniatureSelectionne = element.siblings('img.miniature-selectionnee'); |
miniatureSelectionne.removeClass('miniature-selectionnee'); |
miniatureSelectionne.addClass('miniature-cachee'); |
var miniatureAffichee = miniatureSelectionne; |
922,30 → 964,19 |
if(miniatureSelectionne.prev('.miniature').length != 0) { |
miniatureAffichee = miniatureSelectionne.prev('.miniature'); |
} else { |
miniatureAffichee = miniatureSelectionne.siblings(".miniature").last(); |
miniatureAffichee = miniatureSelectionne.siblings('.miniature').last(); |
} |
} else { |
if(miniatureSelectionne.next('.miniature').length != 0) { |
miniatureAffichee = miniatureSelectionne.next('.miniature'); |
} else { |
miniatureAffichee = miniatureSelectionne.siblings(".miniature").first(); |
miniatureAffichee = miniatureSelectionne.siblings('.miniature').first(); |
} |
} |
console.log(miniatureAffichee); |
miniatureAffichee.addClass('miniature-selectionnee'); |
miniatureAffichee.removeClass('miniature-cachee'); |
} |
|
function ajouterNumNomSel() { |
var nn = ''; |
if ($("#taxon").data("numNomSel") == undefined) { |
nn = '<span class="alert-error">[non lié au référentiel]</span>'; |
} else { |
nn = '<span class="nn">[nn'+$("#taxon").data("numNomSel")+']</span>'; |
} |
return nn; |
} |
|
//+---------------------------------------------------------------------------------------------------------+ |
// AUTO-COMPLÉTION Noms Scientifiques |
|
964,19 → 995,19 |
html: true |
}); |
|
$( "#taxon" ).bind("autocompleteselect", function(event, ui) { |
$("#taxon").data(ui.item); |
$('#taxon').bind('autocompleteselect', function(event, ui) { |
$('#taxon').data(ui.item); |
if (ui.item.retenu == true) { |
$("#taxon").addClass('ns-retenu'); |
$('#taxon').addClass('ns-retenu'); |
} else { |
$("#taxon").removeClass('ns-retenu'); |
$('#taxon').removeClass('ns-retenu'); |
} |
}); |
} |
|
function getUrlAutocompletionNomsSci() { |
var mots = $('#taxon').val(); |
var url = SERVICE_AUTOCOMPLETION_NOM_SCI_URL_TPL.replace('{referentiel}',NOM_SCI_PROJET); |
var mots = $('#taxon').val(), |
url = SERVICE_AUTOCOMPLETION_NOM_SCI_URL_TPL.replace('{referentiel}',NOM_SCI_PROJET); |
url = url.replace('{masque}', mots); |
return url; |
} |
990,7 → 1021,7 |
nomRet : '', numNomRet : '', famille : '', retenu : false |
}; |
if (suggestions.length >= AUTOCOMPLETION_ELEMENTS_NBRE) { |
nom.label = "..."; |
nom.label = '...'; |
nom.value = $('#taxon').val(); |
suggestions.push(nom); |
return false; |
1002,7 → 1033,7 |
nom.nomSelComplet = val.nom_sci_complet; |
nom.numNomSel = val.nn; |
nom.nomRet = val.nom_retenu_complet; |
nom.numNomRet = val["nom_retenu.id"]; |
nom.numNomRet = val['nom_retenu.id']; |
nom.famille = val.famille; |
nom.retenu = (val.retenu == 'false') ? false : true; |
|
1028,9 → 1059,9 |
initSource = proto._initSource; |
|
function filter( array, term ) { |
var matcher = new RegExp( $.ui.autocomplete.escapeRegex(term), "i" ); |
var matcher = new RegExp($.ui.autocomplete.escapeRegex(term), 'i'); |
return $.grep( array, function(value) { |
return matcher.test( $( "<div>" ).html( value.label || value.value || value ).text() ); |
return matcher.test($('<div>').html(value.label || value.value || value).text()); |
}); |
} |
|
1046,12 → 1077,12 |
}, |
_renderItem: function( ul, item) { |
if (item.retenu == true) { |
item.label = "<strong>"+item.label+"</strong>"; |
item.label = '<strong>'+item.label+'</strong>'; |
} |
|
return $( "<li></li>" ) |
.data( "item.autocomplete", item ) |
.append( $( "<a></a>" )[ this.options.html ? "html" : "text" ]( item.label ) ) |
return $('<li></li>') |
.data('item.autocomplete', item) |
.append($('<a></a>')[this.options.html ? 'html' : 'text'](item.label)) |
.appendTo( ul ); |
} |
}); |