Advanced search: WIP POC, integration with endpoint.

SVN:b1162[5400]
This commit is contained in:
Guillaume Lajarige
2018-03-09 11:10:03 +00:00
parent 37196b42ed
commit 0bf33ec7e9
5 changed files with 198 additions and 50 deletions

View File

@@ -43,11 +43,26 @@ $(function()
this._super( key, value );
},
// DOM element helpers
_prepareElement: function()
{
this._super();
// Remove toggler as it's a non sense here
this.element.find('.sfc_toggle').remove();
},
_setTitle: function(sTitle)
{
if(sTitle === undefined)
{
sTitle = this.options.oql;
if(this.options.oql !== '')
{
sTitle = this.options.oql;
}
else
{
sTitle = this._makeOQLExpression();
}
}
this._super(sTitle);
},