@@ -1615,17 +1615,17 @@ define([
16151615condValue = com_util . formatString ( "'{0}'" , cond ) ;
16161616}
16171617if ( oper == 'contains' ) {
1618- rowSelection . appendFormat ( '{0}.str.contains({1})' , colValue , condValue ) ;
1618+ rowSelection . appendFormat ( '` {0}` .str.contains({1})' , colValue , condValue ) ;
16191619} else if ( oper == 'not contains' ) {
1620- rowSelection . appendFormat ( '~{0}.str.contains({1})' , colValue , condValue ) ;
1620+ rowSelection . appendFormat ( '~` {0}` .str.contains({1})' , colValue , condValue ) ;
16211621} else if ( oper == 'starts with' ) {
1622- rowSelection . appendFormat ( '{0}.str.startswith({1})' , colValue , condValue ) ;
1622+ rowSelection . appendFormat ( '` {0}` .str.startswith({1})' , colValue , condValue ) ;
16231623} else if ( oper == 'ends with' ) {
1624- rowSelection . appendFormat ( '{0}.str.endswith({1})' , colValue , condValue ) ;
1624+ rowSelection . appendFormat ( '` {0}` .str.endswith({1})' , colValue , condValue ) ;
16251625} else if ( oper == 'isnull()' || oper == 'notnull()' ) {
1626- rowSelection . appendFormat ( '{0}.{1}' , colValue , oper ) ;
1626+ rowSelection . appendFormat ( '` {0}` .{1}' , colValue , oper ) ;
16271627} else {
1628- rowSelection . appendFormat ( '{0}{1}{2}' , colValue , oper != '' ?( ' ' + oper ) :'' , condValue != '' ?( ' ' + condValue ) :'' ) ;
1628+ rowSelection . appendFormat ( '` {0}` {1}{2}' , colValue , oper != '' ?( ' ' + oper ) :'' , condValue != '' ?( ' ' + condValue ) :'' ) ;
16291629}
16301630if ( condList . length > 1 ) {
16311631rowSelection . append ( ')' ) ;