File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
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 ( "1.0.85 .0" ) ]
19
- [ assembly: AssemblyFileVersion ( "1.0.85 .0" ) ]
18
+ [ assembly: AssemblyVersion ( "1.1 .0" ) ]
19
+ [ assembly: AssemblyFileVersion ( "1.1 .0" ) ]
Original file line number Diff line number Diff line change 700
700
return this . options . filterMode ;
701
701
} ,
702
702
703
- setFilterMode : function ( mode )
703
+ setFilterMode : function ( mode , noRefresh )
704
704
{
705
705
if ( this . options . allowedFilterModes . indexOf ( mode ) > - 1 )
706
706
{
718
718
719
719
var request2 = this . buildRequest ( ) ;
720
720
721
- if ( JSON . stringify ( request1 ) !== JSON . stringify ( request2 ) )
721
+ if ( ! noRefresh && JSON . stringify ( request1 ) !== JSON . stringify ( request2 ) )
722
722
{
723
723
this . refresh ( true ) ;
724
724
}
800
800
{
801
801
this . setFilterValue ( e , filters [ e . name ] ) ;
802
802
} , this ) ) ;
803
+
804
+ this . $element . trigger ( "setfilters.griddly" , filters ) ;
803
805
804
806
this . options . autoRefreshOnFilter = true ;
805
807
this . refresh ( true ) ;
You can’t perform that action at this time.
0 commit comments