Questions tagged [tabulator]

Tabulator is a table generating JavaScript library. It is extremely flexible in manipulating tables and all the information within it. It also allows for external loading and saving. It can handle HTML, CSV, XML and JSON. See http://tabulator.info/

Tabulator is a table generating JavaScript library. If your question (code) is using the Tabulator library, and you think your issue may involve Tabulator, then please add the tabulator tag to your question. This will help SO and search engines to better find your question, and increase your chances for getting a good answer.

965 questions
2
votes
1 answer

Update row select editparams on row, based on dataedit trigger from another select

Looking to update a rows defined select values initialized editParams values to an alternate set based on the selected value of another cell. In the sample code you'll see if a user selects a module I am trying to update the available permissions to…
2
votes
1 answer

How to highlight marker on leaflet map with data match on table row?

I have some data like Place name , latitude longitude which is showing in table and when i click any row it gets the place name and show highlighted marker on leaflet map according to this. But when i click another row it is also highlighted marker…
2
votes
1 answer

What is the best way to implement several concurrent Ajax request in one view/page?

In a data-driven web application, I have several razor views which contain tables that were created using tabulator, and are updated using self calling ajax functions on an interval. In most of the views, the number of tables is no more than three,…
nxll_blxck
  • 21
  • 1
2
votes
1 answer

Update Columns in Tabulator

Is there a way to only update the columns in the Tabulator table on an event? var table = new Tabulator("#example-table", { data: tableData, // autoColumns: true, layout: "fitColumns", …
Matt
  • 639
  • 1
  • 7
  • 16
2
votes
2 answers

Change colour of money formatted cell to red if negative

I have a column which is formatted using the built in money formatter. I would like to change the text of the cell to red if the numeric value of the cell is negative. I can't create a custom formatter because the column formatter option is…
user5321531
  • 2,545
  • 5
  • 21
  • 27
2
votes
2 answers

How to show label value in cell dropdown instead of stored value?

I'm using Tabulator.js to create an interactive table. I have a dropdown cell (editor type: select) and have found out how to show different labels when selecting from the list (instructions can be found here, the third way). When I select…
Ginkgo
  • 125
  • 2
  • 9
2
votes
2 answers

How to highlight a single cell in Tabulator when data changes

I'm trying to use the jQuery .effect() function to highlight changes in my Tabulator data as it is refreshed from the server. I am still using Tabulator 3.5 so thought jQuery .effect() would be the simplest approach. It is not mandatory to use, as…
mrots
  • 31
  • 5
2
votes
1 answer

Dynamically loading children nodes in Tabulator

var table = new Tabulator("#view360-table", { width:"100%", dataTree:true, layout:"fitDataFill", rowContext:function(e, row){ //e - the click event object //row - row component alert(row.getIndex()); }, …
2
votes
1 answer

Select Editor editorParams populate values from array in textfile?

I am using Tablulator v4.1. I am creating an interface for our pharmacy organization so a member can change the meeting information without doing any coding. One field is the meeting room location which is a select editor. Is it possible to…
waubain
  • 49
  • 8
2
votes
3 answers

How to edit Tabulator dates in the cell?

http://tabulator.info/examples/4.1 The Editable Data example above shows the use of a custom editor for the date field (example in the link is DOB). Similar examples exist in earlier tabulator versions as well as here and Github. The javascript date…
2
votes
1 answer

Disable columns under certain condition

I need to disable/enable to input some columns under certain conditions, can I do it with tabulator? Columns available or locked to input when I open page with table with some state (boolean or etc). Thank you. example: //define some sample data var…
n4ks
  • 105
  • 2
  • 6
2
votes
2 answers

Tabulator ajax request and CORS

I'm having trouble disabling CORS for a tabulator ajax request. Have tried to use values from fetch configuration passed in ajaxConfig but to no avail. If I take out ajaxConfig I get hit with CORS but If I send the ajaxConfig stuff I get an error:…
2
votes
1 answer

How to change column title in table that was created by tabulator.js?

I use latest version of tabulator.js and I need ability to change column title in tables that already exists. Any ideas? Thank you!
Medar
  • 23
  • 2
2
votes
3 answers

Use the same data for multiple tables with tabulator

I'm using jQuery and tabulator to create a fairly simple webpage showing the progress of various live events. I have three table elements on the page showing events in different states. Broadly speaking I have a table for events that are 'Live',…
toryan
  • 285
  • 3
  • 11
1
vote
2 answers

Tabulator image enlarge on click

I am new to reactjs and I am new to tabulator. I am using a tabulator to show a row which also has an image in one of the columns, as shown below. enter image description here I want to enlarge the image to its original size. How can I achieve…
sambit
  • 33
  • 6