Questions tagged [footable]

FooTable is a jQuery plugin for wordpress for styling HTML tables on smaller devices.

FooTable is a jQuery plugin for wordpress that aims to make HTML tables on smaller devices look awesome – No matter how many columns of data you may have in them.

Have you ever wanted to show a lot of data in a table, but hate how badly it scales on smaller mobile devices? The FooTable jQuery plugin solves this problem by allowing you to hide certain columns on smaller devices, but still allowing the user to expand each row to see the columns that were hidden.

Link: http://fooplugins.com/plugins/footable-jquery/

237 questions
1
vote
2 answers

How to delete all rows in a footable?

I have a footable that I need to clean. I mean, I need to delete all rows in the footable. Is there any footable function to do that? Or do I need to delete rows one by one? I tried to reinitialize the table doing this: $('.footable').footable(); I…
Rafa
  • 23
  • 1
  • 3
1
vote
1 answer

How to retrieve column data from Footable

We have a Footable in our page with some data, and one column has a delete row button, working as expected. Problem is, when deleterow is pressed, we want to retrieve from the column a value, to do some process with it. Example: ID -- Name --…
Giu
  • 271
  • 1
  • 4
  • 8
1
vote
2 answers

jquery footable $('#classes').trigger('footable_redraw'); return hidden table

this is my first Question, may be hard to understand. calling $('#classes').trigger('footable_redraw'); , it return the data but hide the table heading and data rows,but when i used $('#classes').trigger('footable_initialize'); its work fine but…
Navid
  • 21
  • 3
1
vote
1 answer

Why the pagination of footable is not working?

I'm trying to implement FooTable-2 in my project, but for some reason I can't get the pagination working. I'm following THIS tutorial and here is what I have so far as a table code:
Slim
  • 1,708
  • 5
  • 37
  • 60
1
vote
1 answer

Footable 2 Select rows

I'm using FOOTABLE to create job board. What I want to add is a checkbox option to select jobs (rows) so users can send cv to multiple jobs at once. Any idea on how to implement this in existing table? simple example:
felix91
  • 452
  • 3
  • 11
1
vote
3 answers

How To hide FooTable Columns Dynamically?

I have tried this code but it works for once but not every time. $('.rptEmail').attr('data-ignore','true'); $('.rptEmail').attr('data-hide','all'); $('#ReportMainGrid').trigger('footable_redraw'); I have tried other trigger also but nothing works…
Sujith S
  • 67
  • 1
  • 8
1
vote
1 answer

Text input not working properly on mobile with footable

I have a text-box under footable class. I want to edit this this text box but not working in mobile. On mobile keypad appear when I click on text box but after a second keypad disappears automatically. Here is the HTML syntax
1
vote
1 answer

Item removed from Knockout observable array, but not from html table

I have a plunk that demonstrates my issue: http://plnkr.co/edit/PzBrcTX0Vnn01xWy4dk6 This is a table that has a list of "settings". It uses Footable so the list can be sorted and other features of Footable. Scenario 1: run, push the remove setting…
Jeff
  • 2,728
  • 3
  • 24
  • 41
1
vote
1 answer

Footable is not working for variable number of table in one single page

I am trying to make variable number of table in a page with knockOut. Everything works fine but footable is not working. When I create one single table with knockOut, footable works fine. Here is my code for variable number of table with…
prium
  • 167
  • 11
1
vote
3 answers

footable in bootstrap 3 not initializing

the excellent footable plugin I'm trying to integrate in by twitter bootstrap doesn't initialize. That is to say, thank to my firebug inspector, I can see the table is handled by footable plugin but the row I always want to be hidden :…
hugsbrugs
  • 3,501
  • 2
  • 29
  • 36
1
vote
1 answer

Footables - Sort Indicator not showing properly

I tried using sorting in Footables. It works fine except that the sort icon indicators in the header is not showing properly(it looks like a garbled character). It seems to be an encoding issue. Here are the css that I…
developarvin
  • 4,940
  • 12
  • 54
  • 100
1
vote
4 answers

How to reveal hidden rows with jquery?

I'm using footable (a jquery script for making tables responsive on mobiles, tablets etc) but i have a problem. Touching-Clicking on expand for every row is kind of unnecessary for my project. Normally with this code it works:
mirza
  • 5,685
  • 10
  • 43
  • 73
0
votes
0 answers

Is there anyway to show always rows modified in a FooTable

The system is made with php, mysql, javascript, jquery and what it does is show a list of products and the user chooses the amount and shows a total. I want to make a function that when the user modifies the quantity of a row, the row is always…
0
votes
0 answers

How to use Footable in Blazor server

I want to use FooTable in blazor server project. https://fooplugins.github.io/FooTable/ It is working when just showing. but when input tag in row ,it can not work 2way binding. How can I use this FooTable? Or tell me other best solutions. if you…
kuronsky
  • 3
  • 2
0
votes
1 answer

FooTable.Export: Export to CSV on filtered rows

I'm using FooTables and trying to implement the export table functionality. I've looked at the little bit of documentation they have and I think I'm implementing it correctly, however even when I apply a filter on the table the export still returns…