I have a web grid with large number of rows and I am not interested in paging the grid. I need to view only a particular number of rows initially. Then while scrolling I need to view rows one after the other. I have read it somewhere that it is possible with knockout.js. Do anyone have a sample code to share? Am working with MVC 4 Razor.
How to Lazy load mvc4 webgrid rows using knockout.js ?
1.3k views Asked by Vishnu Vikraman Sreekala At
1
There are 1 answers
Related Questions in ASP.NET-MVC-4
- SignalR client is not connecting to the hub after changing the client app's cookie name
- How I Can send question and answer by without reload web page
- Load SQL database saved MS word document to Syncfusion Document Editor
- @Html.ValidationSummary(true) throw CSP error
- Rotativa PDF export taking significantly longer on Windows Server 2016 after recent update
- Two ASP.NET MVC applications overwrite same session cookie
- List is not binding in controller, when pass it through hidden field from view in ASP.NET MVC
- Calling AJAX methods in parallel increases server response time?
- OpenCover Profiler Error : ProfilerCommunication::RequestInformation(...) => Communication (Chat channel - TrackAssembly) with host has failed
- Nested child sub menus not getting generated in Asp.Net Core MVC project
- How to show Documents on viewer when htmlmode: true in Configuration.yml file in Group Docs
- ASP.NET MVC role is trying to use SQL Server Express not the SQL Server
- Error HRESULT E_FAIL has been returned from a call to a COM component in Asp.net MVC
- How I can get total number from Database by SignalR
- Application Insights telemetry shows 'NA' from MVC 4 application behind private load balancer
Related Questions in RAZOR
- I have a problem outputing the roles on the page ListRoles.cshtml
- ASP.NET Core MVC : NullReferenceException: Object reference not set to an instance of an object
- Blazor/Razor resolve components using dependency injection
- Receiving 400 bad request on post when customer auth handler is used
- Prevent modal from popping up when freeze button is clicked
- AJAX Requests from jQuery to ASP.NET Core API Losing Authentication
- Initialize a singleton from cookies for a ASP.NET Core Razor project
- Razor.RuntimeCompilation creates an error
- ASP.NET Core MVC invoke function through button on razor page
- Runtime Compilation of Razor Pages Does Not Work .NET 8 VS2022
- Why does my ASP.NET Core MVC application add some identifier to HTML elements?
- Question | Visual Studio Code Editor .cshtml file not working properly
- Error in Using references with Blazor Client
- JQuery accordion not working in Razor page
- Challenge with ASP.NET Web Forms to .NET 8 Razor Pages Migration on Private Server
Related Questions in KNOCKOUT.JS
- Force Magento 2's checkout accordion to be open on first step, closed on second step
- Unable to process binding "value: function() {return myVar }"
- I am getting Failed to load resource: the server responded with a status of 500 (Internal Server Error) - intermittently in Knocout/MVC app
- Knockout Computed field never updates UI
- Add values in form input in Javascript (Chrome)
- Magento 2: wrong shipping method saved in order
- How to add multiple method titles to KnockoutJS ifnot statement in Magento2
- Uncaught TypeError error in Chrome for multiple file upload
- Apexcharts <svg> attribute height: Expected length, "NaN" when loading other page
- Is toString() JavaScript output "guaranteed" to be the same in every browser/implementation?
- How does the knockout rendering for imagepicker work in SurveyJS Survey Creator
- Knockout.js - Subscription to observable selected value in cascading select list firing twice
- Malware in Knockoutjs context debugger
- Magento 2 Minicart / Knockout.js: Format calculated price / sum
- Magento 2: How to open a modal for each related product using UI component?
Related Questions in WEBGRID
- Cannot Bind Null Value: WebGrid nullable Date field
- How do you move data from one cell in one row of a web grid to another cell in another row that is empty using jQuery?
- How do you show dropdownlist boxes on the row that you checked with a checkbox in a web grid?
- MVC webgrid column width not adjusting
- how to change data in gridview without reloading page asp.net mvc
- How to render custom HTML in Nonfactors/MVC6 grid
- Cancel event handler using webgrid in MVC asp net C#
- ASP.NET MVC : sorting column of my webgrid executes the wrong action
- Validate Grid Data in ASP.NET MVC
- Adding data to a Model for a nesting web grid
- Can I force the MVC-6-Grid to understand the data annotation on the fields
- How to display data in column based on select in webgrid handsontable
- How to use a drop down list from model in WebGrid MVC C#
- How can I make WebGrid columns take a real lambda to be typesafe?
- Asp.net MVC : Pass a value from webgrid text box column to the controller
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I implemented similar control. It was tree view with button "Load more". A lot of items in observable array might slow down your app, especially when you are showing them, because it's a lot of DOM operations.
So, all my data pushes into ordinary array on page load. For data to be shown I have KO observable array. I am pushing more data into an observable array when I need to show it.
Here is basic example:
JavaScript:
HTML Template:
If you need to show more items, you can just call page.showMore();