Questions tagged [jquery-datatables-editor]

jQuery dataTables Editor is a package turning jQuery dataTables into CRUD tables (Create, read, update and delete)

Product page : DataTables Editor.

DataTables Editor makes it very easy to create user interactive tables of new or allready existing jQuery dataTables. The Editor supports all the dataTables features and plugins like filtering, sorting, paging, scrolling, column reordering etc.

Note, jQuery DataTables Editor is a commercial product of the same origin as the open source jQuery dataTables.

138 questions
25
votes
2 answers

ASP.Net Web API model binding not working like it does in MVC 3

I was under the impression that model binding in the ASP.Net Web API was supposed to support binding with the same minimum level of functionality supported by MVC. Take the following controller: public class WordsController : ApiController { …
23
votes
1 answer

Data Table Error :: Cannot read property 'fnSetData' of undefined

Initial code looks like this.. var oTable = $('#sim_data').dataTable( { aoColumns: [ {"sName": "ss" },{"sName": "sim_no"}, {"sName": "sale_price"}, {"sName": "purchased_price"},{"sName": "status"} ] }).makeEditable({ ..... …
TED
  • 1,829
  • 5
  • 18
  • 36
17
votes
2 answers

Is there a way to get aocolumns from the server in datatable editable?

So, I am trying to make one generic page for any table that is being requested by user. For that I am trying to fetch all data from server and not having anything hardcoded on the clientside. $(document).ready(function(){ /* Add/remove class…
RamPrasadBismil
  • 579
  • 2
  • 10
  • 30
11
votes
2 answers

How to check the datatable version I am using

I am using the following function to get the version of Datatable I am using : alert($.fn.DataTable.versionCheck()); But I am getting error as : $.fn.DataTable.versionCheck is not a function What is wrong in my code?
6
votes
2 answers

jQuery Datatable Editor not initializing

I am currently using datatable in a page. However, when I try adding datatable editor plug-in, I am getting errors in the console: TypeError: $.fn.dataTable.Editor is not a constructor All I did was add the following lines in the jquery of creating…
lulutanseco
  • 313
  • 1
  • 8
  • 29
6
votes
3 answers

DataTables: Columns with dot (.) in header not displaying correctly

DataTables seems to treat dots (.) as a special character and doesn't display the columns, which have them in the header. Is there any solution how to keep the dots and use some sort of escape character? The error is: Requested unknown parameter…
Peter G.
  • 7,816
  • 20
  • 80
  • 154
5
votes
1 answer

DataTables: Generate whole table from JSON

I am using jQuery DataTables and looking for a way how to generate DataTable fully from JSON. This should include the number of columns, their names, row data, but also may include other settings like sorting. I've seen this is possible, but among…
Peter G.
  • 7,816
  • 20
  • 80
  • 154
4
votes
0 answers

how to extend drill down table to third level in data tables?

I referred the following code and successfully obtained drill down table to two levels in data tables. https://jsfiddle.net/karlnicholas/2gc3r7vv/ now I want to obtain drill down table upto 3rd level, so i tried to extend the code in by adding…
3
votes
1 answer

DataTables, get value of hidden cell

I have a DataTables Table, and I want to be able to get the value of the first td, when the tr is clicked on. I have set the visibility of this td to false. Edit: because the two answers so far are assuming I can click on the cell I want. I cannot…
blackandorangecat
  • 1,246
  • 5
  • 18
  • 37
3
votes
1 answer

Row disappearing after edit submitted in DataTables Editor

I'm using datatables editor. When I try to edit and post it to the server, the row keeps disappearing. After refreshing the page, I can see the data actually updated. Here's my code snippet. var editor = new $.fn.dataTable.Editor({ ajax:…
elquimista
  • 2,181
  • 2
  • 23
  • 32
3
votes
2 answers

Jquery Datatable search box reposition

I want to re position filter box in out of the jquery data table. I want to exactly like this: How should I do that?
Top25
  • 121
  • 2
  • 3
  • 11
3
votes
0 answers

How to allow to select single radio button on jquery data table?

I am implementing jquery data table. In each row there are 2 radio buttons. My problem is in a row both radio buttons are getting selected if click on it where as in a column only one radio button is getting selected. I need exactly reverse…
pan1490
  • 939
  • 1
  • 7
  • 25
3
votes
0 answers

Is it possible for pagination last button reload in jquery datatable?

Is it possible for pagination last button reload in jquery datatable? I have used jquery datable ,Now my record more than one lack's data. So I have page initialize 1000 record load and then last pagination button click reload data 1000. can…
3
votes
1 answer

Cannot read property 'aoData' of null after ajax call including datatables

I keep getting "Uncaught TypeError: Cannot read property 'aoData' of null" when I reload a Datatable via Ajax. I basically have one main datatable (table_1) with a link on each row that contains a pop up modal housing another datatable. (I use PHP…
3
votes
1 answer

Save created row in datatable editor via php

I using datatable editor to display rows This is the code i'm using var editor; $(document).ready( function () { editor = new $.fn.dataTable.Editor( { "ajaxUrl": { "create": "admin/save", }, …
Gowri
  • 1,832
  • 3
  • 29
  • 53
1
2 3
9 10