Since not all of our users are guaranteed to support the HTML 5 placeholder attribute, I was trying to build a workaround for it in JavaScript:
$(document).ready(function() {
var searchInColumn = $('#searchInColumn').text();
$(".ui-widget-glossary-editor-column-filter").on('focus', function() {
var $this = $(this);
if ($this.val() == searchInColumn) {
$this.val('');
$this.css('color', '#444444');
}
}).on('blur', function() {
var $this = $(this);
if ($this.val() == '') {
$this.val(searchInColumn);
$this.css('color', '#c9c9c9');
}
}).blur();
});
While that works as it's supposed to, this now of course poses the problem that an actual (localized) text is present in the input text field, triggering the datatable filter. Can I somehow intercept the PrimeFaces datatable filtering in order to treat this localized placeholder text as an empty string?
Thanks for your suggestions and best regards
Pascal
searchInColumninput holds already localized text from some bundle ? show$('#searchInColumn')code... – Daniel Jan 21 at 8:31