File tree Expand file tree Collapse file tree 3 files changed +197
-7
lines changed
AbpWithjTable/AbpjTable.Web Expand file tree Collapse file tree 3 files changed +197
-7
lines changed Original file line number Diff line number Diff line change 44
44
$dfd . resolve ( {
45
45
"Result" : "OK" ,
46
46
"Records" : data [ originalListAction . recordsField || 'items' ] ,
47
- "TotalRecordCount" : data . totalCount //TODO: Make an Interface to standardize totalCount
47
+ "TotalRecordCount" : data . totalCount
48
48
} ) ;
49
49
} )
50
50
. fail ( function ( error ) {
59
59
var originalCreateAction = self . options . actions . createAction ;
60
60
self . options . actions . createAction = function ( postData ) {
61
61
return $ . Deferred ( function ( $dfd ) {
62
-
62
+ console . log ( postData ) ;
63
63
var input = $ . extend ( { } , postData ) ;
64
64
65
65
originalCreateAction . method ( input )
Original file line number Diff line number Diff line change 10
10
actions : {
11
11
listAction : {
12
12
method : abp . services . app . person . getPeople
13
- } ,
14
- createAction : {
15
- method : abp . services . app . person . createPerson ,
16
- recordField : 'person'
17
- }
13
+ } // ,
14
+ // createAction: {
15
+ // method: abp.services.app.person.createPerson,
16
+ // recordField: 'person'
17
+ // }
18
18
} ,
19
19
fields : {
20
20
id : {
You can’t perform that action at this time.
0 commit comments