@@ -295,17 +295,17 @@ Ext.define('Ext.ux.data.proxy.WebSocket', {
295295
296296 // Treats 'read' as a string event, with no data inside
297297 if ( action === me . getApi ( ) . read ) {
298- var sorters = operation . sorters ,
299- groupers = operation . groupers ;
298+ var sorters = operation . _sorters ,
299+ groupers = operation . _groupers ;
300300
301301 // Remote sorters
302302 if ( sorters && sorters . length > 0 ) {
303303 data . sort = [ ] ;
304304
305305 for ( i = 0 ; i < sorters . length ; i ++ ) {
306306 data . sort . push ( {
307- property : sorters [ i ] . property ,
308- direction : sorters [ i ] . direction
307+ property : sorters [ i ] . _property ,
308+ direction : sorters [ i ] . _direction
309309 } ) ;
310310 }
311311 }
@@ -316,16 +316,16 @@ Ext.define('Ext.ux.data.proxy.WebSocket', {
316316
317317 for ( i = 0 ; i < groupers . length ; i ++ ) {
318318 data . group . push ( {
319- property : groupers [ i ] . property ,
320- direction : groupers [ i ] . direction
319+ property : groupers [ i ] . _property ,
320+ direction : groupers [ i ] . _direction
321321 } ) ;
322322 }
323323 }
324324
325325 // Paging params
326- data . page = operation . page ;
327- data . limit = operation . limit ;
328- data . start = operation . start ;
326+ data . page = operation . _page ;
327+ data . limit = operation . _limit ;
328+ data . start = operation . _start ;
329329 }
330330 // Create, Update, Destroy
331331 else {
0 commit comments