File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 15
15
//
16
16
// You can specify all the values or you can default the Revision and Build Numbers
17
17
// by using the '*' as shown below:
18
- [ assembly: AssemblyVersion ( "2.4.3 " ) ]
19
- [ assembly: AssemblyFileVersion ( "2.4.3 " ) ]
18
+ [ assembly: AssemblyVersion ( "2.4.4 " ) ]
19
+ [ assembly: AssemblyFileVersion ( "2.4.4 " ) ]
20
20
//[assembly: AssemblyInformationalVersion("2.0-alpha6")]
Original file line number Diff line number Diff line change 236
236
var sort = this . options . sortFields [ i ] ;
237
237
238
238
var header = $ ( "th[data-griddly-sortfield='" + sort . Field + "']" , this . $element ) ;
239
- var inlineFilter = $ ( ".griddly-filters-inline" ) [ 0 ] . cells [ header [ 0 ] . cellIndex ] ;
239
+ var inlineFilter = $ ( ".griddly-filters-inline" , this . $element ) [ 0 ] . cells [ header [ 0 ] . cellIndex ] ;
240
240
241
241
header . addClass ( sort . Direction == "Ascending" ? "sorted_a" : "sorted_d" ) ;
242
242
$ ( inlineFilter ) . addClass ( sort . Direction == "Ascending" ? "sorted_a" : "sorted_d" ) ;
270
270
{
271
271
if ( this . options . filterMode == "Inline" && $ ( event . target ) . parents ( '.popover.in' ) . length == 0 && $ ( event . target ) . parents ( ".filter-trigger" ) . length == 0 && ! $ ( event . target ) . hasClass ( "filter-trigger" ) )
272
272
{
273
- $ ( ".griddly-filters-inline .filter-trigger" ) . each ( function ( )
273
+ $ ( ".griddly-filters-inline .filter-trigger" , this . $element ) . each ( function ( )
274
274
{
275
275
var filter = $ ( this ) ;
276
276
825
825
$ ( el ) . popover ( {
826
826
html : true ,
827
827
placement : "bottom" ,
828
- container : ".griddly-filters-inline" ,
828
+ container : $ ( ".griddly-filters-inline" , this . $element ) ,
829
829
template : '<div class="popover griddly-filter-popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>' ,
830
830
content : function ( )
831
831
{
You can’t perform that action at this time.
0 commit comments