After upgrading to NuGet package 1.3.18. from 1.2.155, DataTablesResult disappeared
Closed this issue · 5 comments
The C# backend code doesn't compile any more.
Old packages.config:
<package id="Mvc.JQuery.Datatables" version="1.2.155" targetFramework="net45" /> <package id="Mvc.JQuery.Datatables.Templates" version="1.2.155" targetFramework="net45" />
New:
<package id="Mvc.JQuery.Datatables" version="1.3.18" targetFramework="net45" /> <package id="Mvc.JQuery.Datatables.Core" version="1.3.14" targetFramework="net45" /> <package id="Mvc.JQuery.Datatables.Templates" version="1.3.18" targetFramework="net45" />
Example code which doesn't compile:
return DataTablesResult.Create(calculationChecks.AsQueryable(), dataTableParam);
Can you try again with 1.3.20 - there were some duff builds which got partially pushed up. The example project works now, so that code should work too. Reopen if you have further difficulties.
I upgraded to 1.3.22 but the DataTablesResult class is still gone. Maybe I'm following a wrong pattern? I see that the demo site is using that class too.
Oh, now it's in Mvc.JQuery.DataTables instead of Mvc.JQuery.Datatables;
Yep, sorry, the mismatch in capitalization caused all sorts of mayhem,
On 31 August 2015 at 17:30, Csaba Toth notifications@github.com wrote:
Oh, now it's in Mvc.JQuery.DataTables instead of Mvc.JQuery.Datatables;
—
Reply to this email directly or view it on GitHub
#129 (comment)
.