kolgepratik / js.tableutils

A jQuery plugin for HTML Tables. You can - Fix Table Headers with both Vertical and Horizontal Scrolling support, Add master CheckBox, Enable Sorting, Filtering, Client-side and Server-side Numeric, Alphabetic and Alphanumeric Pagination, Addition of new rows to the table, Deletion of exiting rows, Editing of existing rows.
13 stars 7 forks source link

Pagination issue with Firefox #11

Open ghost opened 10 years ago

ghost commented 10 years ago

Thank you for making this plugin. I ran into an issue that I have not been able to figure out on my own. When I enable pagination in Firefox (v24 and v25.0.1), the table displays the full list with no scroll bar and cuts off at the bottom. The page links function - in that they appear to reflect the page changes, but there is no activity in the table. For me Chrome and IE work fine. I'm able to reproduce this on your demo site. Please see the screenshot of your site via my browser. I'm using version 1.1.2 of the plugin.

mozilla firefox_2014-02-10_07-00-21

Thanks for your help.

ghost commented 10 years ago

Just updated my FF to version 27 and the issue still exists.

kolgepratik commented 10 years ago

Hey,

Thanks for pointing out the bug. Actually the thing is I have not been able to push updates to this plugin in the past few months. Also, about Firefox even I have faced that issue. That is because of some CSS not applied. I had made this plugin initially for IE and therefore the plugin has issues with Firefox and sometimes even Chrome. I am looking into this, but I really suggest you to use an alternative plugin for your requirement until I release a new version of this plugin. But this may take time.

ghost commented 10 years ago

Thanks for letting me know.  Good luck.


From: kolgepratik notifications@github.com To: kolgepratik/tableutils tableutils@noreply.github.com Cc: onskee onskee@yahoo.com Sent: Tuesday, February 11, 2014 6:32 AM Subject: Re: [tableutils] Pagination issue with Firefox (#11)

Hey, Thanks for pointing out the bug. Actually the thing is I have not been able to push updates to this plugin in the past few months. Also, about Firefox even I have faced that issue. That is because of some CSS not applied. I had made this plugin initially for IE and therefore the plugin has issues with Firefox and sometimes even Chrome. I am looking into this, but I really suggest you to use an alternative plugin for your requirement until I release a new version of this plugin. But this may take time. — Reply to this email directly or view it on GitHub.

jruddell commented 10 years ago

I really like your pagination plugin, but am also having the problem with firefox. do you mind if I go through the code and try and fix it?

kolgepratik commented 10 years ago

Hello,

As you rightly pointed out, the plugin does not work in Firefox. The issue is with rules like 'align' and so. If you want to fix it, you will have to check the CSS for the plugin. As of now, I am not able to provide much time for the bug fixes due to other things going on.

If really want to fix the bugs, then go ahead. It will be great. You can push your changes to the plugin's repository too if the fixes are done.

Thank you. Pratik.

On Tue, Mar 25, 2014 at 1:10 AM, johnruddell notifications@github.comwrote:

I really like your pagination plugin, but am also having the problem with firefox. do you mind if I go through the code and try and fix it?

Reply to this email directly or view it on GitHubhttps://github.com/kolgepratik/tableutils/issues/11#issuecomment-38490879 .

Pratik. http://kolgepratik.wordpress.com/

bumbumpaw07 commented 10 years ago

hi, i like this pagination, readable because of your unselfish descriptive variables. but when i used it to IE7, error occurs. (yah.really need it to work in 7.) do you have updated plug in?

kolgepratik commented 10 years ago

No,

The plugin does not work well on IE7, and also it will be long before the next version will be released. If you are going to use it with IE7, or Firefox (the plugin has some issues with Firefox too), i suggest you to please look into some other plugins as well.

Thanks & Regards. Pratik.

On Tue, Jun 24, 2014 at 11:54 AM, bumbumpaw07 notifications@github.com wrote:

hi, i like this pagination, readable because of your unselfish descriptive variables. but when i used it to IE7, error occurs. (yah.really need it to work in 7.) do you have updated plug in?

Reply to this email directly or view it on GitHub https://github.com/kolgepratik/tableutils/issues/11#issuecomment-46936132 .

Pratik. http://kolgepratik.wordpress.com/

bumbumpaw07 commented 10 years ago

hi sir! i dont want the style of having all filter function on every column :

i want to have like this : [for column1 only for filtering ] [column1 table header title] [column2 table header title] [row 1 table data ] [row 1 table data ] [row 2 table data ] [row 2 table data ]

i read your documentation, but i dont think, there is for something like for input tag,only select tag.

kolgepratik commented 10 years ago

Hi,

Sorry for the late reply.

You can do this. Override the generate() function for the 1st column. Return '' from that function. So this column wont generate any content. On the filter for this column, attach this code: $(filter).on('keyup', function() { $(hiddenColFilter).val($(filter).val()).trigger('keyup'); }

On DOM ready, hide the filter for the 1st column (hiddenColFilter) by its ID.

You can get the IDs for filters in page source.

Hope this helps.

On Thu, Aug 7, 2014 at 9:15 AM, bumbumpaw07 notifications@github.com wrote:

hi sir! i dont want the style of having all filter function on every column :

i want to have like this : [for column1 only for filtering ] [column1 table header title] [column2 table header title] [row 1 table data ] [row 1 table data ] [row 2 table data ] [row 2 table data ]

i read your documentation, but i dont think, there is for something like for input tag,only select tag.

Reply to this email directly or view it on GitHub https://github.com/kolgepratik/tableutils/issues/11#issuecomment-51427937 .

Pratik. http://kolgepratik.wordpress.com/

bumbumpaw07 commented 10 years ago

Thanks sir, i already solve it using this

filter: { type: ['noFilter','noFilter','text'] }

On Mon, Aug 11, 2014 at 4:08 PM, kolgepratik notifications@github.com wrote:

Hi,

Sorry for the late reply.

You can do this. Override the generate() function for the 1st column. Return '' from that function. So this column wont generate any content. On the filter for this column, attach this code: $(filter).on('keyup', function() { $(hiddenColFilter).val($(filter).val()).trigger('keyup'); }

On DOM ready, hide the filter for the 1st column (hiddenColFilter) by its ID.

You can get the IDs for filters in page source.

Hope this helps.

On Thu, Aug 7, 2014 at 9:15 AM, bumbumpaw07 notifications@github.com wrote:

hi sir! i dont want the style of having all filter function on every column :

i want to have like this : [for column1 only for filtering ] [column1 table header title] [column2 table header title] [row 1 table data ] [row 1 table data ] [row 2 table data ] [row 2 table data ]

i read your documentation, but i dont think, there is for something like for input tag,only select tag.

Reply to this email directly or view it on GitHub < https://github.com/kolgepratik/tableutils/issues/11#issuecomment-51427937>

.

Pratik. http://kolgepratik.wordpress.com/

— Reply to this email directly or view it on GitHub https://github.com/kolgepratik/tableutils/issues/11#issuecomment-51752055 .