Search
43606 results 6781-6790
Forum
- 22nd Feb 2017Delete row not working on joined table since editor 1.6.I wanted to post it in Bug Report - not here.
- 7th Feb 2017Data Table Editor EventThe initCreate event is not cancellable which is why the above code won't really do anything. Instead, what you need to do is use the preSubmit event which is cancellable and will stop the user from being able to submit without your condition being satisfied. Allan
- 6th Feb 2017Need to check/uncheck a checkbox on all table rows including on other pagesI am good now. I'm not sure how I ended up with the Select.dataTable.min.css file. I pointed to the Select.dataTables.min.css and the behavior is correct. Thanks. Tom
- 2nd Feb 2017Paged table and additional getJSON calls on visible rows onlyAre you saying you no longer have a question?
- 1st Feb 2017Editor displays Under Table instead of in the pop-up windowThe issue was in fact a missing css file. The issue has been resolved.
- 31st Jan 2017Table Borders export excelthanks for quick answer allan, but when i export example to excel doesnt show the blue background. Preparing test-case..
- 27th Jan 2017how can i remove records from database and insert into new table of same database on click of submitI have no idea what your question is! I can see the title of your post, but I don't know what software you are using (i.e. are you using Editor, or something else)? Allan
- 17th Jan 2017Join table exampleI see that for the data, you discarded the values of data.options and data.files. Does that mean I can't use the data if I need to keep those values for Editor?
- 6th Jan 2017How to force a page refresh upon adding a new row to an Editor table?That works! Thanks Allan.
- 27th Dec 2016TD scroll not working on table with server side processing?Never mind I got this working by editing my modified version of the ssp.class.php file so that the data_output function now looks like this: static function data_output($columns,$data) { print_r($data); $DateFields = include 'DateFields.php'; $out = array(); for($i=0,$ien=count($data);$i<$ien;$i++) { $row = array(); for($j=0,$jen=count($columns);$j<$jen;$j++) { $column = $columns[$j]; if(isset($column['Formatter'])) { echo "Formatter<br>"; $row[$column['dt']] = $column['Formatter']($data[$i][$column['db']],$data[$i]); } else { //This is were I added the <div> around the values to allow the scrolling to work in all browsers. $row[$column['dt']] = "<div class='Scrollable'>" .$data[$i][$columns[$j]['db']]. "</div>"; if(in_array($column['db'],$DateFields,TRUE) && $row[$column['dt']] != '') { $row[$column['dt']] = substr($data[$i][$columns[$j]['db']],5,2) . "/" . substr($data[$i][$columns[$j]['db']],8,2) . "/" . substr($data[$i][$columns[$j]['db']],2,2); } } } $out[] = $row; } return $out; } I had to add a div inside the individual td so that the scroll would work.