J. Ryan Jones
J. Ryan Jones
The cells and their headers support this with HTML: ``` cols.Add("Check") .WithHtmlEncoding(false) .WithSorting(false) .WithFiltering(false) .WithVisibility(true, false) .WithHeaderText("") .WithValueTemplate("") .WithPlainTextValueExpression(p => ""); ``` ``` $(function () { $(document.body).on("click", "#selectAllCheck", function (e)...
I still get the same problem mentioned in #97 (3 years later). The export link takes you to a plain text page version of the "visible" rows of the data...
If you are using Owin and have registered a Create method for your DB context in IAppBuilder.CreatePerOwinContext, then: `MyDbContext dbContext = context.CurrentHttpContext.GetOwinContext().Get();`