Re: Dynamic Selector with Django/Jquery

2017-04-20 Thread Melvyn Sopacua
On Saturday 15 April 2017 17:31:50 Anonymous Coder wrote: > I need to filter lists of items to be displayed upon user selection in > my list view. > For instance if user selects 12 it should show only 12 products per > page and so on. For this specific issue:

Re: Dynamic Selector with Django/Jquery

2017-04-15 Thread m712 - Developer
You can create a URL in your application to which your AJAX code will send the details and the amount of items it wants and your application will return the items in JSON format. Take a look at https://docs.djangoproject.com/en/1.11/topics/db/queries/ to learn about how to filter and limit your