My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions

Issue 290 attachment: droplistfilter-ajax.diff (665 bytes)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Index: web/js/jquery.jmesa.js
===================================================================
--- web/js/jquery.jmesa.js (revision 2844)
+++ web/js/jquery.jmesa.js (working copy)
@@ -526,10 +526,11 @@

/* Something was selected or the clicked off the droplist. */

- $(input).click(function() {
+ $(input).click(function(event) {
var id = dynFilter.id;
$.jmesa.saveDroplistDynFilterData(cell, originalValue, originalBackgroundColor);
$.jmesa.onInvokeAction(id, 'filter');
+ event.stopPropagation();
});

$(input).blur(function() {
Powered by Google Project Hosting