Magento 2 Ajax pagination for grid on front end The Next CEO of Stack OverflowMagento front end only printing “local.xml”Front end is completely downChanging a custom attribute's sort order in Default Product Listing Sort By in Display SettingsMagento2 development and speed of compilationMagento 2 : Error when trying to display the content of a static block on the product view page via a widgetPHP Static tests for front-end devsMagento 2: Cacheable false for specific block not workingDisplay specific category, toolbar and filter on home pageMagento 2 - Adding custom field to account registration page not workingIs there any way to remove pagination ID from URL?
Can a caster that cast Polymorph on themselves stop concentrating at any point even if their Int is low?
Natural language into sentence logic
Science fiction (dystopian) short story set after WWIII
Grabbing quick drinks
How to make a software documentation "officially" citable?
If I blow insulation everywhere in my attic except the door trap, will heat escape through it?
Only print output after finding pattern
Text adventure game code
How to be diplomatic in refusing to write code that breaches the privacy of our users
How do I solve this limit?
How can I open an app using Terminal?
Go Pregnant or Go Home
Anatomically Correct Mesopelagic Aves
What is the point of a new vote on May's deal when the indicative votes suggest she will not win?
Why do professional authors make "consistency" mistakes? And how to avoid them?
Robert Sheckley short story about vacation spots being overwhelmed
Term for the "extreme-extension" version of a straw man fallacy?
Can the Reverse Gravity spell affect the Meteor Swarm spell?
I believe this to be a fraud - hired, then asked to cash check and send cash as Bitcoin
Visit to the USA with ESTA approved before trip to Iran
How easy is it to start Magic from scratch?
Opposite of a diet
How to write the block matrix in LaTex?
When airplanes disconnect from a tanker during air to air refueling, why do they bank so sharply to the right?
Magento 2 Ajax pagination for grid on front end
The Next CEO of Stack OverflowMagento front end only printing “local.xml”Front end is completely downChanging a custom attribute's sort order in Default Product Listing Sort By in Display SettingsMagento2 development and speed of compilationMagento 2 : Error when trying to display the content of a static block on the product view page via a widgetPHP Static tests for front-end devsMagento 2: Cacheable false for specific block not workingDisplay specific category, toolbar and filter on home pageMagento 2 - Adding custom field to account registration page not workingIs there any way to remove pagination ID from URL?
On custom tab of product detail page on front end i have added a table and used Pager for pagination.
MagentoThemeBlockHtmlPager
But this reloads the entire page when pagination is used. I don't want to reload the entire page.
Is their any way to use ajax along with Pager?
If not then can you recommend some other way around?
Thanks.
magento2 frontend
add a comment |
On custom tab of product detail page on front end i have added a table and used Pager for pagination.
MagentoThemeBlockHtmlPager
But this reloads the entire page when pagination is used. I don't want to reload the entire page.
Is their any way to use ajax along with Pager?
If not then can you recommend some other way around?
Thanks.
magento2 frontend
add a comment |
On custom tab of product detail page on front end i have added a table and used Pager for pagination.
MagentoThemeBlockHtmlPager
But this reloads the entire page when pagination is used. I don't want to reload the entire page.
Is their any way to use ajax along with Pager?
If not then can you recommend some other way around?
Thanks.
magento2 frontend
On custom tab of product detail page on front end i have added a table and used Pager for pagination.
MagentoThemeBlockHtmlPager
But this reloads the entire page when pagination is used. I don't want to reload the entire page.
Is their any way to use ajax along with Pager?
If not then can you recommend some other way around?
Thanks.
magento2 frontend
magento2 frontend
asked Nov 20 '17 at 12:03
Wasim BajwaWasim Bajwa
539
539
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
There are some good infinite scroll plugins. Not sure about ajax pagination but could be done by creating a controller that just returns the layout of the product grid and returns the ajax and replaces the block each time.
This https://github.com/czone-tech/magento2-ajaxified-catalog has a good starting point atleast and may of even done ajax pagination (the demo currently isn't working and i cant remember). But with that if it doesn't have it you could just add some javascript and update the links so they just run some ajax query on the pagination to pull the correct page (just add ajax=1 parameter) and replace the response with the product list element from there.
I have created ajax search and infinite scroll pretty easily with this so pagination shouldn't be a problem.
add a comment |
If you know about the jquery and layout structure of the Magento it is very simple to do using the below link
https://www.dckap.com/blog/infinite-scroll-ajax-pagination-in-magento-2/
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f202319%2fmagento-2-ajax-pagination-for-grid-on-front-end%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
There are some good infinite scroll plugins. Not sure about ajax pagination but could be done by creating a controller that just returns the layout of the product grid and returns the ajax and replaces the block each time.
This https://github.com/czone-tech/magento2-ajaxified-catalog has a good starting point atleast and may of even done ajax pagination (the demo currently isn't working and i cant remember). But with that if it doesn't have it you could just add some javascript and update the links so they just run some ajax query on the pagination to pull the correct page (just add ajax=1 parameter) and replace the response with the product list element from there.
I have created ajax search and infinite scroll pretty easily with this so pagination shouldn't be a problem.
add a comment |
There are some good infinite scroll plugins. Not sure about ajax pagination but could be done by creating a controller that just returns the layout of the product grid and returns the ajax and replaces the block each time.
This https://github.com/czone-tech/magento2-ajaxified-catalog has a good starting point atleast and may of even done ajax pagination (the demo currently isn't working and i cant remember). But with that if it doesn't have it you could just add some javascript and update the links so they just run some ajax query on the pagination to pull the correct page (just add ajax=1 parameter) and replace the response with the product list element from there.
I have created ajax search and infinite scroll pretty easily with this so pagination shouldn't be a problem.
add a comment |
There are some good infinite scroll plugins. Not sure about ajax pagination but could be done by creating a controller that just returns the layout of the product grid and returns the ajax and replaces the block each time.
This https://github.com/czone-tech/magento2-ajaxified-catalog has a good starting point atleast and may of even done ajax pagination (the demo currently isn't working and i cant remember). But with that if it doesn't have it you could just add some javascript and update the links so they just run some ajax query on the pagination to pull the correct page (just add ajax=1 parameter) and replace the response with the product list element from there.
I have created ajax search and infinite scroll pretty easily with this so pagination shouldn't be a problem.
There are some good infinite scroll plugins. Not sure about ajax pagination but could be done by creating a controller that just returns the layout of the product grid and returns the ajax and replaces the block each time.
This https://github.com/czone-tech/magento2-ajaxified-catalog has a good starting point atleast and may of even done ajax pagination (the demo currently isn't working and i cant remember). But with that if it doesn't have it you could just add some javascript and update the links so they just run some ajax query on the pagination to pull the correct page (just add ajax=1 parameter) and replace the response with the product list element from there.
I have created ajax search and infinite scroll pretty easily with this so pagination shouldn't be a problem.
answered Nov 20 '17 at 12:48
harriharri
3,0261655
3,0261655
add a comment |
add a comment |
If you know about the jquery and layout structure of the Magento it is very simple to do using the below link
https://www.dckap.com/blog/infinite-scroll-ajax-pagination-in-magento-2/
add a comment |
If you know about the jquery and layout structure of the Magento it is very simple to do using the below link
https://www.dckap.com/blog/infinite-scroll-ajax-pagination-in-magento-2/
add a comment |
If you know about the jquery and layout structure of the Magento it is very simple to do using the below link
https://www.dckap.com/blog/infinite-scroll-ajax-pagination-in-magento-2/
If you know about the jquery and layout structure of the Magento it is very simple to do using the below link
https://www.dckap.com/blog/infinite-scroll-ajax-pagination-in-magento-2/
answered yesterday
Kalimuthu LKalimuthu L
32
32
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f202319%2fmagento-2-ajax-pagination-for-grid-on-front-end%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown