[jQuery] Pagination + DOMWindow = FAIL

2010-01-04 Thread grayloon
I'm trying to use the pagination plugin with DOMWindow, but they're not playing well together. I think it's probably just my lack of knowledge with jQuery, so I thought I post for help. The DOMWindow stops working after I use any of the pagination links. If I use DOMWindow as soon as the page load

[jQuery] Pagination with History

2009-11-13 Thread Dave Maharaj :: WidePixels.com
Has anyone come across a nice pagination script for server side processing that has a built in history feature so if a user clicks on a link in the pagination then hits back in the browser it will take you back to your pagination set, not back to page 1. Thanks, Dave

[jQuery] Re: jQuery Pagination - Return to top of screen

2009-11-12 Thread wheatstraw
Works great, thank you. On Nov 12, 4:30 pm, Andrei Eftimie wrote: > > would anyone have any ideas on how to force > > the window scroll back to the top on click? > > function pageselectCallback(page_index, jq){ >        var new_content = $('#hiddenresult > div.result:eq('+page_index+')').clone();

Re: [jQuery] jQuery Pagination - Return to top of screen

2009-11-12 Thread Andrei Eftimie
> would anyone have any ideas on how to force > the window scroll back to the top on click? function pageselectCallback(page_index, jq){ var new_content = $('#hiddenresult div.result:eq('+page_index+')').clone(); $('#Searchresult').empty().append(new_content); window.scroll(0,

[jQuery] jQuery Pagination - Return to top of screen

2009-11-12 Thread wheatstraw
jQuery Pagination works great, but when you click for the next set of results the window does not return to the top (if you have to scroll to get to the pagination). would anyone have any ideas on how to force the window scroll back to the top on click? - function pageselectCallback

[jQuery] pagination plugin

2009-08-25 Thread finneycanhelp
Hi, http://plugins.jquery.com/project/pagination mentions an IE 7 issue. Are people successfully using IE7 with this plugin? Thanks. -- Michael Finney - "Always Striving To Serve You Better Every Day" http://www.SmilingSoftwareSolutions.com

[jQuery] Pagination

2009-08-11 Thread Dave Maharaj :: WidePixels.com
Does anyone know how or if possible to remember where you were at in pagination? Example a user clicks 1, 2, 3, finds what they want on the third page and clicks a link...nope not what they were looking for they click back which now brings them back to pagination page 1 when it would be nice to r

[jQuery] jQuery pagination problem

2009-07-23 Thread archeons
I am using the pagination plug-in provided by jQuery.com however I had a problem putting the content inside probably because my input data is not static html page like the demo. In the demo the sample input is in static html page and it will get the page based on I have an php output of 5x10 ar

[jQuery] Re: Jquery pagination using ColdFusion and SQL Server and lots of records

2009-06-18 Thread Erich93063
sion and just grabs the next > >> X records to display. > > >> I came across this article: > > >>http://blog.pengoworks.com/index.cfm/2006/6/19/MSSQL-2k-Stored-Proced... > > >> Which is a SQL stored proc that will get the next X records but it > >>

[jQuery] Re: Jquery pagination using ColdFusion and SQL Server and lots of records

2009-06-18 Thread Charlie Griefer
base using Fusion and just grabs the next >> X records to display. >> >> I came across this article: >> >> http://blog.pengoworks.com/index.cfm/2006/6/19/MSSQL-2k-Stored-Procedure-for-Pagination >> >> Which is a SQL stored proc that will get the next X records

[jQuery] Re: Jquery pagination using ColdFusion and SQL Server and lots of records

2009-06-18 Thread Michael Ennis
ation > > Which is a SQL stored proc that will get the next X records but it > only works on one flat table. My report query will be joining multiple > tables. > > So basically here's what I'm looking for: > jquery pagination > can handle thousands of records > uses C

[jQuery] Jquery pagination using ColdFusion and SQL Server and lots of records

2009-06-18 Thread Erich93063
Which is a SQL stored proc that will get the next X records but it only works on one flat table. My report query will be joining multiple tables. So basically here's what I'm looking for: jquery pagination can handle thousands of records uses ColdFusion to generate the recordset (JSON

[jQuery] Pagination

2009-06-12 Thread Lee Wilson
Hi all, Does anyone know of any plugins for getting pagination setup with jQuery, I thought this would be perfect: http://plugins.jquery.com/project/pagination but it only seems to display one item per page. I have also tried an example from this book: http://www.packtpub.com/learning-jqu

[jQuery] Re: JQUERY Pagination

2009-05-19 Thread Jim D
I would check out DataTables. It looks like it would easily be able to do what you're talking about and much more. http://www.sprymedia.co.uk/article/DataTables -Jim On May 18, 11:59 am, bharani kumar wrote: > Hi all, > Please refer few jquery pagination plugins , > > Also

[jQuery] JQUERY Pagination

2009-05-18 Thread bharani kumar
Hi all, Please refer few jquery pagination plugins , Also need in the able heading with sort type , for example Assume if i click the date , then i want sort by date , if i click subject , need to sort by subject , *Date* *Subject* *09-08-1984* Subject 1 *10-09-1986* Subject 2 *10-08

[jQuery] jQuery Pagination Plugin ( Need to increase the number rows per page )

2009-05-17 Thread bharani kumar
Hello All , I am using jQuery Pagination , the demo one is pagination with static data , Now i changed that static pagination into dynamic(retrieve data from db) , But the problem is , I cant display more then one row per page , Please find the attachment ,, Thanks -- உங்கள் நண்பன் பரணி

[jQuery] pagination

2009-03-17 Thread Bright Dadson
Hi Experts, I am using jQuery/ajax to fetch result from my php file. I am trying to load the result to for pagination like this; $('#hiddenresult').load(data.responseText, null, initPagination); //Callback funtion looks like this function pageselectCallback(page_index, jq){

[jQuery] Pagination control jquery -- Need some help

2009-02-26 Thread Doug C
I wrote this jquery to basically dynamically build a paging control for long articles, etc I have it dynamically generating a UL, a page selector and a drop down selector and I just need to write a piece that will do a <-Prev and Next -> and my brain is having trouble with it. Here is the code

[jQuery] Re: Jquery pagination plugin problem

2009-02-09 Thread nate laws
There are a lot of ways to do it, here is a simple solution, of course 'length' will have to be determined somehow. var items_per_page = 10; var length = 1000; function pageSelectCallback(page_index, container){ $("#contentarea).load("url",{page:page_index}) return false;

[jQuery] Re: Jquery pagination plugin problem

2009-02-08 Thread deviateDesigns
How would set this up with list items and pulling from a external html file? I am new to using this library. On Feb 6, 8:28 pm, nate laws wrote: > I just tried this plugin for the first time today.  The think to > realize is that it does not directly have anything to do with which > items and

[jQuery] Re: Jquery pagination plugin problem

2009-02-06 Thread nate laws
I just tried this plugin for the first time today. The think to realize is that it does not directly have anything to do with which items and how many are displayed. Instead it only controls the pagination links. You have to manually display whichever items you want to be shown in the callback

[jQuery] Re: Jquery pagination plugin problem

2009-02-06 Thread deviateDesigns
I am having the same issue not sure what is the issue still researching looks like the items_per_page is passing only a 1. On Jan 26, 4:53 am, Andy789 wrote: > Hi all, > > I am playing with thepaginationplugin(http://plugins.jquery.com/ > node/5912) and cannot figure out how to change number of

[jQuery] Jquery pagination plugin problem

2009-01-26 Thread Andy789
Hi all, I am playing with the pagination plugin (http://plugins.jquery.com/ node/5912) and cannot figure out how to change number of items showing on a single page. Changing the param items_per_page changes the number of page links (navigation), but still shows a single item on a page. You may p

[jQuery] tag breaks jquery pagination

2009-01-06 Thread ripcurlksm
I have jQuery pagination working in my search results, however, I hit a snag when trying to view the next page's results, because of my integrating this into my page and the pagination is showing up, but the links are broken because I am using a tag. For example: Normally the pagination

[jQuery] Re: jQuery Pagination and MySQL $limit, $offset

2009-01-04 Thread Ken
hi ^^ you can use the easyPagi this. It is plugin easy to use. Please visit here view demo and download <http://goldengate.com.vn/pagination/> 2009/1/4 ripcurlksm > > > I am trying to use the jQuery pagination plugin with my PHP/MySQL website > -- > It appears I have to e

[jQuery] jQuery Pagination and MySQL $limit, $offset

2009-01-03 Thread ripcurlksm
I am trying to use the jQuery pagination plugin with my PHP/MySQL website -- It appears I have to either use Ajax or use PHP to write the jQuery pagintion header so I can control the $offset and $limit, in order to control the pagination -- What is the best way to combine javascript, PHP and

[jQuery] pagination solution

2008-10-27 Thread bdee1
I am looking for a simple solution to add pagination to some reports i have built using ASP and jquery. the problem is that the reports are returning so much data that the script(s) are timing out. SO based on that - i assume i woudl need to have some kind of ajax based pagination so that the s

[jQuery] Pagination and Autocomplete conflict?

2008-10-06 Thread t3k
I can't seem to get the jquery pagination plugin and autocomplete by Yanik Gleyzer to co-exist in the page. I get either autocomplete is not a function or pagination is not a function. Any ideas? Thanks! J

[jQuery] pagination sample ?

2008-09-12 Thread cc96ai
Does anyone use pagination plugin http://plugins.jquery.com/project/pagination is there any sample for calling ajax ? how could we apply it ? 1) we set the number record in pagination, if that's ajax dynamic return, we don't know how many will be, how could we resolve it ? function pageselectC

[jQuery] [Pagination Plugin] How to use it?

2008-07-05 Thread Raghu
Hi, I am trying to use Jquery pagination plugin. I have read documentation but things are still not clear to me. Can someone please help me? What exactly we need to do in callback function? Will this pagination plugin work with Ajax call? $("#News-Pagination").pagi

[jQuery] jQuery pagination : works in FF, but I.E... not so much

2008-04-03 Thread MichaelEvangelista
this is a plea for help I'm stuck... and it might be simple but... I'm stuck. http://www.eastcoastgolfsales.com/products/ladies/productlistsgloves_mre.cfm?CategoryID=20 Love the pagination plugin, and thought I had it made, till the client pointed out that the pagination is not creating more th

[jQuery] Pagination plugin (and jquery plugin instances in general)

2008-02-13 Thread J Moore
I'm using the pagination plugin at the top and bottom of a list. Works great, except that the two instances are independent. Clicking on page "3" in the one pagination instance will not change the other. I've thought of various solutions/workarounds, but they all involve getting access to the pa

[jQuery] Pagination and Filtering Data

2008-02-13 Thread ATLeich
At this point, it's just a high-level process I'm trying to establish as well as the feasibility of doing what I'm looking to accomplish so no code at this point. But basically, the requirement is to have a new way to handle pagination and filtering for an eCommerce store. The interface is curren

[jQuery] Re: [Fwd: [jQuery] Pagination stop propagation]

2008-01-11 Thread Sebastián V. Würtz
on element     $("#Pagination").pagination(300, {                     num_edge_entries: 2,                     num_display_entries: 8,                     link_to: "something.htm",     callback: pageselectCallback     }); >From the doc (http://d-scribe.

[jQuery] [Fwd: [jQuery] Pagination stop propagation]

2008-01-11 Thread Sebastián V. Würtz
I really need help badly with this Mensaje original Anyone have an idea why i cant cancel the the normal action of the button, im keep getting redirect to the "somethin.htm" in this example? http://www.d-scribe.de/webtools/jquery-pagination/demo.htm y downloa

[jQuery] Pagination stop propagation

2008-01-10 Thread Sebastián V. Würtz
Anyone have an idea why i cant cancel the the normal action of the button in this example? http://www.d-scribe.de/webtools/jquery-pagination/demo.htm y download the page and modified it, only             function pageselectCallback(page_id, jq){                         $('#Searchr

[jQuery] pagination

2007-08-10 Thread Eridius
I was wonding is a plug exist for jquery to handle pagintion? -- View this message in context: http://www.nabble.com/pagination-tf4250056s15494.html#a12095618 Sent from the JQuery mailing list archive at Nabble.com.

[jQuery] Pagination mousewheel w/o next pages

2007-06-02 Thread Sebastián V . Würtz
Someone ever implement something like a pagination like in this site? http://unspace.ca/livefilter The mousewheel plugin is a good start but i still thinking in the whole logic. Implementing a listening on the html for the wheel work, but i need to add the keys and the logic for when the page is

[jQuery] Pagination ajax

2007-04-30 Thread Sebastián V . Würtz
i have a block with css button like a pagination code: 1 2 3 Last Next » and i have this script $(document).ready(function(){ navigation(); }); function navigation() { $('.nav_paginacion ul li a').each(function(i) { $(this).click(function(){ $.ge