Skip to content

Commit e001d16

Browse files
committed
aoData extra parameters added to the model binder for fnServerParams support
1 parent f7d6c8c commit e001d16

File tree

3 files changed

+53
-5
lines changed

3 files changed

+53
-5
lines changed

Datatables.Mvc/DataTable.cs

+8-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ public DataTable() {
1616
sSearchs = new List<string>();
1717
bEscapeRegexs = new List<bool>();
1818
iSortCols = new List<int>();
19-
sSortDirs = new List<DataTableSortDirection>();
19+
sSortDirs = new List<DataTableSortDirection>();
20+
aoData = new Dictionary<string,string>();
2021
}
2122

2223
/// <summary>
@@ -70,7 +71,12 @@ public DataTable() {
7071
/// <summary>
7172
/// Direction to be sorted - "desc" or "asc". Note that the prefix for this variable is wrong in 1.5.x where iSortDir_(int) was used)
7273
/// </summary>
73-
public IList<DataTableSortDirection> sSortDirs { get; set; }
74+
public IList<DataTableSortDirection> sSortDirs { get; set; }
75+
/// <summary>
76+
/// Gets or sets the array of object data (in string representation) as passed to the server in the request excluding any well known datatables.net keys.
77+
/// </summary>
78+
/// <remarks>Any custom keys added through fnServerParams can be found in this dictionary.</remarks>
79+
public IDictionary<string, string> aoData { get; set; }
7480
}
7581

7682
/// <summary>

Datatables.Mvc/DataTableModelBinder.cs

+43-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System;
1+
using System;
2+
using System.Collections.Generic;
23
using System.Web.Mvc;
34

45
namespace Datatables.Mvc {
@@ -9,14 +10,35 @@ namespace Datatables.Mvc {
910
/// requests to <see cref="DataTable"/>
1011
/// </summary>
1112
public class DataTableModelBinder : IModelBinder {
12-
#region IModelBinder Members
13+
#region IModelBinder Members
14+
15+
private static readonly IDictionary<string,bool> KnownFormParameters = new Dictionary<string,bool> {
16+
{ "sEcho", true },
17+
{ "iDisplayStart", true },
18+
{ "iDisplayLength", true },
19+
{ "iColumns", true },
20+
{ "sColumns", true },
21+
{ "sSearch", true },
22+
{ "bEscapeRegex", true },
23+
{ "bSortable_", true },
24+
{ "bSearchable_", true },
25+
{ "sSearch_", true },
26+
{ "bEscapeRegex_", true },
27+
{ "iSortingCols", true },
28+
{ "iSortCol", true },
29+
{ "iSortCol_", true },
30+
{ "sSortDir_", true },
31+
// not used in BindModel
32+
{ "mDataProp_", true },
33+
{ "bRegex", true },
34+
{ "bRegex_", true }
35+
};
1336

1437
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext) {
1538
if (controllerContext == null) {
1639
throw new ArgumentNullException("controllerContext");
1740
}
1841

19-
2042
if (bindingContext == null) {
2143
throw new ArgumentNullException("bindingContext");
2244
}
@@ -110,6 +132,24 @@ public object BindModel(ControllerContext controllerContext, ModelBindingContext
110132
}
111133
}
112134

135+
// get all the other not well known parameters - these can be defined by the programmer
136+
// http://datatables.net/release-datatables/examples/server_side/custom_vars.html
137+
foreach (var key in controllerContext.HttpContext.Request.Form.AllKeys)
138+
{
139+
var shortKey = key;
140+
var underscorePos = shortKey.IndexOf('_');
141+
if (underscorePos > 0) // -1 is for existance but starting with an _ is also not a shortened key
142+
{
143+
shortKey = shortKey.Substring(0, underscorePos + 1);
144+
}
145+
if (KnownFormParameters.ContainsKey(shortKey))
146+
{
147+
continue;
148+
}
149+
dataTable.aoData.Add(key, controllerContext.HttpContext.Request.Form[key]);
150+
}
151+
152+
113153
return dataTable;
114154
}
115155

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
##This Fork##
22
Uses json.net for serialization so DT_RowId and DT_RowClass can be used (a dictionary was required).
33

4+
Adds a property getter/setter and binds DataTable.aoData. This dictionary contains all other key value pairs that are not specially handled; meaning you can retreive any key value pairs added to aoData via the fnServerParams (see [http://datatables.net/release-datatables/examples/server_side/custom_vars.html])
5+
46
##How to Use (Properly)##
57

68
In Global.asax.cs during Application_Start:

0 commit comments

Comments
 (0)