File tree 2 files changed +12
-3
lines changed
2 files changed +12
-3
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 ( "3.1.3 " ) ]
19
- [ assembly: AssemblyFileVersion ( "3.1.3 " ) ]
18
+ [ assembly: AssemblyVersion ( "3.2.0 " ) ]
19
+ [ assembly: AssemblyFileVersion ( "3.2.0 " ) ]
20
20
//[assembly: AssemblyInformationalVersion("2.5-filters")]
Original file line number Diff line number Diff line change 790
790
value = 1000 ;
791
791
792
792
this . options . pageNumber = Math . floor ( this . options . pageNumber * this . options . pageSize / value ) ;
793
- this . options . pageSize = value ;
793
+ this . pageSize ( value ) ;
794
794
795
795
this . refresh ( ) ;
796
796
} , this ) ) ;
1854
1854
1855
1855
pageSize : function ( pageSize )
1856
1856
{
1857
+ var originalSize = this . options . pageSize ;
1858
+
1857
1859
this . options . pageSize = pageSize ;
1860
+
1861
+ this . triggerOrQueue ( this . $element , "pagesizechanged.griddly" ,
1862
+ {
1863
+ originalSize : originalSize ,
1864
+ pageSize : pageSize
1865
+ } ) ;
1866
+
1858
1867
// TODO: refresh auto?
1859
1868
} ,
1860
1869
You can’t perform that action at this time.
0 commit comments