File tree 2 files changed +9
-5
lines changed
2 files changed +9
-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 ( "1.2.2 " ) ]
19
- [ assembly: AssemblyFileVersion ( "1.2.2 " ) ]
18
+ [ assembly: AssemblyVersion ( "1.2.3 " ) ]
19
+ [ assembly: AssemblyFileVersion ( "1.2.3 " ) ]
Original file line number Diff line number Diff line change 844
844
}
845
845
}
846
846
847
- input . val ( [ ] . concat ( value ) ) ;
847
+ if ( input . parents ( ".griddly-filter" ) . data ( "griddly-filter-isnoneall" ) && value == null )
848
+ input . prop ( "checked" , false ) ;
849
+ else
850
+ input . val ( [ ] . concat ( value ) ) ;
851
+
848
852
$ ( input [ 0 ] ) . change ( ) ;
849
853
} ,
850
854
1111
1115
return this ;
1112
1116
} ;
1113
1117
1114
- $ . fn . griddly . defaults =
1118
+ $ . fn . griddly . defaults = $ . extend ( { } ,
1115
1119
{
1116
1120
pageNumber : 0 ,
1117
1121
pageSize : 20 ,
1123
1127
autoRefreshOnFilter : true ,
1124
1128
filterMode : null ,
1125
1129
allowedFilterModes : [ ]
1126
- } ;
1130
+ } , $ . fn . griddlyGlobalDefaults ) ;
1127
1131
1128
1132
function GriddlyButton ( )
1129
1133
{ }
You can’t perform that action at this time.
0 commit comments