Skip to content

Commit 6522267

Browse files
committed
minor modification to decouple from form model helper collection type property
1 parent 59400bf commit 6522267

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JQDT/Application/ApplicationBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public ResultModel Execute()
106106
var data = this.GetData();
107107
var requestModel = this.modelBinder.BindModel(ajaxForm, data);
108108

109-
var dataProcessChain = this.GetDataProcessChain(requestModel.Helpers.DataCollectionType);
109+
var dataProcessChain = this.GetDataProcessChain(typeof(T));
110110

111111
// Call events before the data is processed
112112
this.PerformDataProcessorEventHandler(ref data, requestModel, this.OnDataProcessingEvent);

0 commit comments

Comments
 (0)