Search
18878 results 621-630
Forum
- 1st Sep 2016Filter and remove duplicates contents of Dropdown list in create newFor complex queries that looks about as good as it gets :-) Allan
- 15th Aug 2016Create, modify, delete button goneProblem solved. Sorry, plz close.
- 11th Aug 2016excelHtml5 button not showing, but csvHtml5 is showing and create a csv fileThat is something that should be resolved with the Buttons 1.2.2 release. My guess is that you are using 1.2.0 or 1.2.1. Allan
- 8th Aug 2016Create Json string From datatable selected Selected rowThank u allan.. You are Just amazing..
- 8th Aug 2016Create Json from selected row data of JsonThanks.. This is what i want
- 9th Jun 2016Dynamically Create Bootstrap Accordion in a CellIt turns out, it's quite easy to do. I associated a render function with the column (see the columns.render property). When the function is called I do something similar to this: function(data, type, row, meta) { var cusip = row["CUSIP"]; var generatedNodeText = "<a data-toggle='collapse' data-target='#" + cusip + "'>" + data.length + " Documents</a>"; generatedNodeText += "<div id='" + cusip + "' class='collapse'>"; // Generate the anchors in the accordion. // You will generate whatever content is specific to your situation. for (var i in data) { // iterate over the objects in the XBRL array generatedNodeText += "<a href='" + data[i].URL + "'>" + data[i].Text + "</a><br />"; } generatedNodeText += "</div>"; return generatedNodeText; }
- 8th Jun 2016How to create a Datatable that is 100% the height of its container?Fantastic ... thank you Allan.
- 16th May 2016Create and deleting multiple dataTable tablesis there a way to destroy/empty all of the old tables with a wildcard? You can use jQuery selectors to select multiple tables (just comma separate them, like you do in CSS). Or use the $.fn.dataTable.tables() method to get the existing DataTables in a single API instance. Allan
- 29th Apr 2016Create Hyperlink column to trigger AJAX load with new URL parameterAdding the following columnDef and defining a function to recreate the table with a new data property for the ajax option worked. "columnDefs": [{ "targets": [4], "mData": null, "mRender": function(data, type, full) { return '<a href="" onclick="event.preventDefault(); searchSponsor(' + data[15] + ');">' + data[6] + '</a>'; }]
- 10th Nov 2015How do I create child row in datatable when getting data from SharePoint REST API call?Sorry msb72, I can't help you but I'm just at the stage of seeing if it is possible to bring in data into my personal GoDaddy page from my O365 site. Were you able to perform this with a REST call? Tx