Skip to content

Commit 974734a

Browse files
committed
Corrected namespace issue, fixed demo project
1 parent 1a48c26 commit 974734a

File tree

72 files changed

+144
-120
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+144
-120
lines changed

Mvc.JQuery.Datatables.Core/ColumnFilterSettingsVm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Web.Script.Serialization;
44
using Newtonsoft.Json.Linq;
55

6-
namespace Mvc.JQuery.Datatables
6+
namespace Mvc.JQuery.DataTables
77
{
88
public class ColumnFilterSettingsVm : Hashtable
99
{

Mvc.JQuery.Datatables.Core/DataTableConfigVm.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
using System.Net.Mime;
44
using System.Web.Routing;
55
using System.Web.Script.Serialization;
6-
using Mvc.JQuery.Datatables.Models;
7-
using Mvc.JQuery.Datatables.Serialization;
6+
using Mvc.JQuery.DataTables.Models;
7+
using Mvc.JQuery.DataTables.Serialization;
88
using Newtonsoft.Json;
99
using Newtonsoft.Json.Linq;
1010

11-
namespace Mvc.JQuery.Datatables
11+
namespace Mvc.JQuery.DataTables
1212
{
1313
public class DataTableConfigVm
1414
{

Mvc.JQuery.Datatables.Core/DataTablesAttribute.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System;
22
using System.Linq;
33
using System.Reflection;
4-
using Mvc.JQuery.Datatables.Models;
5-
using Mvc.JQuery.Datatables.Reflection;
4+
using Mvc.JQuery.DataTables.Models;
5+
using Mvc.JQuery.DataTables.Reflection;
66

7-
namespace Mvc.JQuery.Datatables
7+
namespace Mvc.JQuery.DataTables
88
{
99
public class DataTablesAttribute : DataTablesAttributeBase
1010
{

Mvc.JQuery.Datatables.Core/DataTablesAttributeBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System;
22
using System.Reflection;
3-
using Mvc.JQuery.Datatables.Models;
3+
using Mvc.JQuery.DataTables.Models;
44

5-
namespace Mvc.JQuery.Datatables
5+
namespace Mvc.JQuery.DataTables
66
{
77
public abstract class DataTablesAttributeBase : Attribute
88
{

Mvc.JQuery.Datatables.Core/DataTablesColumnsReflectionHelper.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Linq;
4-
using Mvc.JQuery.Datatables.Models;
5-
using Mvc.JQuery.Datatables.Reflection;
4+
using Mvc.JQuery.DataTables.Models;
5+
using Mvc.JQuery.DataTables.Reflection;
66

7-
namespace Mvc.JQuery.Datatables
7+
namespace Mvc.JQuery.DataTables
88
{
99
public static class DataTablesColumnsReflectionHelper{
1010
public static ColDef[] ColDefs (this Type t)

Mvc.JQuery.Datatables.Core/DataTablesExcludeAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace Mvc.JQuery.Datatables
3+
namespace Mvc.JQuery.DataTables
44
{
55
/// <summary>
66
/// Prevent a public property from being included as a column in a DataTable row model

Mvc.JQuery.Datatables.Core/DataTablesFilterAttribute.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using System.Linq;
22
using System.Reflection;
33
using System.Runtime.InteropServices;
4-
using Mvc.JQuery.Datatables.Models;
4+
using Mvc.JQuery.DataTables.Models;
55

6-
namespace Mvc.JQuery.Datatables
6+
namespace Mvc.JQuery.DataTables
77
{
88
public class DataTablesFilterAttribute : DataTablesAttributeBase
99
{

Mvc.JQuery.Datatables.Core/DataTablesFiltering.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Linq;
4-
using Mvc.JQuery.Datatables.DynamicLinq;
5-
using Mvc.JQuery.Datatables.Reflection;
4+
using Mvc.JQuery.DataTables.DynamicLinq;
5+
using Mvc.JQuery.DataTables.Reflection;
66

7-
namespace Mvc.JQuery.Datatables
7+
namespace Mvc.JQuery.DataTables
88
{
99
internal class DataTablesFiltering
1010
{

Mvc.JQuery.Datatables.Core/DataTablesParam.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using System.Collections.Generic;
22
using System.Linq;
3-
using Mvc.JQuery.Datatables.Models;
4-
using Mvc.JQuery.Datatables.Reflection;
3+
using Mvc.JQuery.DataTables.Models;
4+
using Mvc.JQuery.DataTables.Reflection;
55

6-
namespace Mvc.JQuery.Datatables
6+
namespace Mvc.JQuery.DataTables
77
{
88
/// <summary>
99
/// Model binder for datatables.js parameters a la http://geeksprogramando.blogspot.com/2011/02/jquery-datatables-plug-in-with-asp-mvc.html

Mvc.JQuery.Datatables.Core/DataTablesRowIdAttribute.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
using System.Reflection;
55
using System.Text;
66
using System.Threading.Tasks;
7-
using Mvc.JQuery.Datatables.Models;
7+
using Mvc.JQuery.DataTables.Models;
88

9-
namespace Mvc.JQuery.Datatables
9+
namespace Mvc.JQuery.DataTables
1010
{
1111
public class DataTablesRowIdAttribute : DataTablesAttributeBase
1212
{

0 commit comments

Comments
 (0)