Search
18437 results 8351-8360
Forum
- 20th Jan 2016datepicker go under overlay then 'datetime' field is editingtable2 = $('#modx_vkrzakaz').DataTable( { dom: 'Bfrtip', ajax: 'php/table.modx_vkrzakaz_sm.php', columns: [ { "data": "modx_vkrzakaz.no_zak"
- 19th Jan 2016Show dynamic content as a tooltip to column headers for datatable on mouseover$("#researchTable-"+clickCount).on('mouseover', '.sessionCols',function () { var thText = $(this).text(); var hoverTxt; $.ajax({ url : "/prvn/onlineCustomerTracking/populateToolTip?value="+thText, async : false, success : function(respText) { hoverTxt = respText; } }); this.setAttribute( 'title', hoverTxt ); }); making async : false, for ajax call and setting attribute outside made it work. Hence closing it.
- 19th Jan 2016Editor File UploadOn a side note, I've noticed that the files array doesn't get posted with the form unless I do the following: "ajax": { url: "/cms/pr/ajax-pr-file-editor", headers: { 'X-CSRF-Token': $('[name=_token]').val() }, data: function ( d ) { d.files = tablePrFiles.files(); } }
- 19th Jan 2016Keytable focus stuck on cell even though inline editing opened on another celllMy table and thead block is constructed dynamically after getting the table columns via ajax, and the data i use is a json array.
- 18th Jan 2016How can I debug "Invalid JSON response"ON MARKTWO_TaskOwner_MAP.task_id = MARKTWO_Task.id and ajax url source: Editor::inst( $db,
- 18th Jan 2016Usage of draw in datatablesThanks for your reply. May i know is there any built-in way to get the draw number of the request on ajax response? or just simply asssign draw = request.draw in ajax return json value?
- 17th Jan 2016ColReorder with ajax-sourced DataTablehttp://jsfiddle.net/Mbj9b/233/ , 3) but using "Ajax data source (objects)" instead
- 15th Jan 2016dataTables Editor: TypeError: e[O5l] is undefinedAh ok, I left out the url. thanks Alan. So to oversimplify: editor = new $.fn.dataTable.Editor({ ajax: "/players/api/list", table: "#myTable", is the outgoing url , whereas $('#myTable').DataTable({ dom: "Bfrtip", ajax: "/players/api/list", is the incoming url
- 15th Jan 2016How can I select() a row within a draw callbackI switched to an AJAX data source, the above
- 15th Jan 2016scrollX: true lost header ?The test page doesn't actually appear to run - there are Javascript errors. Even with the files modified to load there is an undefined variable msg.d attached to the ajax option. Allan