Search
43854 results 22261-22270
Forum
- 6th Dec 2012Adding a non-database column in a server-side processing script$row[] .= "test"; Does that not generate a syntax error? Appending to a non-existent (new) array element? Failing that, it would be great if you could run the debugger over your table please. Allan
- 6th Dec 2012How do I fetch sql data inside row details.row of the parent table. On click, get the
- 6th Dec 2012Keep DataTable but repaginate after repopulating DataTablewhen it redraws the table it uses the old
- 5th Dec 2012FixedColumns - How to dynamically remove rows?No - there is no ability to do that at this time in FixedColumns. You'd currently need to destroy the table and recreate it with the altered FixedColumns initialisation. Allan
- 5th Dec 2012Rows are broken (misaligned) (IE9, Datatables 1.9.4, FixedColumns 2.0.3)Try removing the cellspacing you have on the table - that makes the cell width calculations virtually impossible. I don't have IE to hand at the moment I'm afraid so I can't try it out though. Allan
- 5th Dec 2012Getting aoData is null error but not using server dataFound the issue. In the subRows() function that I am calling my reference to the actual datatable was incorrect. Pointed it at the correct table and the error went away.
- 5th Dec 2012Subtotals in a new rowThat did the trick. I just loop through the fnGetData after the table is rendered and do all the subtotaling myself.
- 3rd Dec 2012New user, delete data from server questionto make a simple table, so everything is rather
- 3rd Dec 2012Live Datadelay and redraw the table For reference, you can
- 3rd Dec 2012Obtain data from my datatable rowGroupingThis is using JS and I added a button to my table. this is my code: Project Name Status {foreach $this->projectsAssigned as $projectsAssigned} {$this->escape($projectsAssigned['name'])}{$this->escape($projectsAssigned['json_data'])} {$this->escape($projectsAssigned['status'])} {$this->escape($projectsAssigned['parent_project'])} {if $projectsAssigned['status'] == ""} {else} Edit Details Edit users Delete {/if} {/foreach}