I am using NonFactors mvcgrid6 (https://mvc6-grid.azurewebsites.net/) in my project and Paging is breaking following a search. When selecting Page 2 for example after a search has been made the whole data set is returned and not just the searched…
Ive just started using NonFactors.Grid.Mvc6 -Version 6.2.4. Ive got its basic functionality working and Im able to retrieve data from my serverside code (.net core 5). I want to implement paging but Im only able to get it to page through the…
I am using NonFactors Grid.Mvc (http://mvc-grid.azurewebsites.net/) and I found limitation in this Grid, if you see an example on http://mvc-grid.azurewebsites.net/Grid/SourceUrl
Code in above Example is(bold line contains the limitation that unable…
I am currently using NonFactors/MVC6-Grid to represent data on my index page for a fairly basic CRUD app built with .NET Core 2.0 & MVC. I have a model with several fields, a few of which are calculated fields.
Sorting and Filtering with the MVC…
i am looking for a some way to add dynamicly row in grid based on framework nonfactors. I dont found any solution in internet.
Here, i have a some example to create grid in view
@(Html
.Grid(Model)
.Build(columns =>
{
…
I'm working on an MVC application in .NET 4.5.2 that uses the NonFactors MVC5 grid. Here's a website with the documentation: https://mvc-grid.azurewebsites.net/
I am running into an issue while trying to adjust the filter for one of my columns. My…
I'm running v7.2 of the NonFactors mvc grid and have noticed that clicking either the sort button or the filter button results in nothing happening. There are no JS errors either.
Diving further into the event listeners on these button I see that…
I'm trying to set background color for cell based on a value.
But i cannot determine how to achieve it.
I Can change cell value but not background value.
I use MVC6 NonFactors Gridview.
Any help will be appreciated.
When i use…
I got Main View which contains table, on row click ajax request will be send.
$.ajax({
url: `/home/setViewBag/${id}`,
type: "get",
success: function (msg) {
$("#modal").html("");
…
Since moving on from .net to .Net Core, Ive had to look for a WebGrid Replacement, which lead me to NonFactors MVC6 grid. I have gotten all the basic understanding of how all if works, now I am trying to understand how to use "@helper" function to…
I am using Nonfactors.Grid.Mvc(6.2.4) and trying to show data in table. I have also included styles and js file in layout as well,
But data is not showing , even table is now showing.
View
@using NonFactors.Mvc.Grid
@model…
I have integrated NonFactors Grid in my Mvc5 application. Its filtering not working on inner class propery name however it works fine on its own properties. I have one class which is User and this contains School object onto it. This School class a…
I'm using an open-sourced grid library (Nonfactors-MVC-Grid) for a .NET MVC5 application and for whatever reason, the renderer converts snake_case variable names in C# to hyphens in JavaScript.
document.addEventListener('rowclick', function (e) {
…
Is it possible to process the filters from server side?
This happens because I work EntityFramework and with thousands of records.
I clarify that I am working with MVC 5
I'm doing a project in Asp.net Core 2.1 (EF, MVC, SQL Server) and trying to find a grid control (or tutorial or anything really, preferably free) that not only hides columns in the UI grid, but remembers which columns are hidden and then tweaks your…