Advanced search: Widget refactoring to use _computeTitle method.

SVN:trunk[5625]
This commit is contained in:
Guillaume Lajarige
2018-04-06 10:06:03 +00:00
parent 26127c8218
commit dbc0971b99
5 changed files with 30 additions and 65 deletions

View File

@@ -186,9 +186,7 @@ $(function()
//------------------
// Inherited methods
//------------------
_setTitle: function(sTitle)
_computeTitle: function(sTitle)
{
var me = this;
if (sTitle === undefined && me.options.operator == 'between')
@@ -245,7 +243,6 @@ $(function()
return me._super(sTitle);
},
// - Convert values to a standard string
_getValuesAsText: function(aRawValues)
{
@@ -270,9 +267,6 @@ $(function()
return me._super(aRawValues);
},
// Prepare operator's DOM element
// - Base preparation, always called
_prepareOperator: function(oOpElem, sOpIdx, oOp)
@@ -330,7 +324,5 @@ $(function()
.data('oOp', oOp)
;
},
});
});