Search
23531 results 2821-2830
Forum
- 1st Mar 2016How can I combine the data from two or more columns into a "select" dropdown box?you can easily do this if you use the php library that accompained with datables or you have to re-invent the wheel I'm going to take field with type select as an example basically you have to define your field with type select and pass an empty array first then use field api and invoke update method. e.g editor.field('test').update(loadJson("/your/api/url")); the response from the server should be something like below your server side script should prepare the concatenated field name from your DB { label: "John Doe",value:"1" } take note loadJson is a wrapper method/function of $.ajax function to get the JSON data from the server. I hope this make sense. Please read the example carefully from the site it has a very good documentation just to start to get your feet wet. Good luck
- 25th Feb 2016Responsive DataTable - Have "automatic column hiding" apply to all th columns in theadFinding it strange that column-visibility callback does not fire when the column is hidden as a result of the responsive behavior. I assume it does not use the column().visible() API? Should it not eat its own dog food?
- 10th Feb 2016Tab between Columns Server side true problemHi, This will be resolved in Editor 1.5.5 which will drop tomorrow. There is a timing / async error when server-side processing is used with inline editing in 1.5.4 I'm afraid. Regards, Allan
- 5th Feb 2016Make several columns hyperlink in a row where part of the hyperlink data coming form server in jsonSee also the rendering section of the manual. Allan
- 28th Jan 2016Column.Search filtering empty columnsHi All, corrected it in the end. using the regex was the correct way. I forgot to add the draw() on the end. final code was column.search('^$',true,false).draw(); Cheers Mark
- 15th Jan 2016Make columns not selectableThat was what I was looking for I was looking through the documentation, but somehow missed that one.. :/ Thank you :) BR Simen
- 25th Nov 2015Smooth Scrolling not working with multiple row and columnsThere are two issues associated to scroller- 1.Loading and scrolling are pretty slower in IE unlike Chrome,Firefox which is pretty faster. 2.Blank screen with "loading.." appears in Scroller-Server Side Processing whenever we try drag and scroll using mouse. Any idea on how to enable smooth scrolling to ensure NO blank screen and "loading.." is shown whenever user tries to drag and scroll using mouse but data should be shown simulataneous to the users scroll without any delay. Any help would be highly appreciated! Thanks.
- 23rd Nov 2015Server-side processing combine multiple DB columns for single DT column with delimitersif anyone else is having the same issue refer to the stack overflow post
- 18th Nov 2015Build Responsive Child Rows As Soon As Columns CollapseYeah that is actually the road I am heading down now. I will track that in a separate branch so you can evaluate and see if you like the implementation. I also need the child row to be in the table at all times regardless if it is expanded or collapsed. Right now it is removing the child from the dom on the collapse.
- 11th Nov 2015CSVHtml5 buttons fails when data is from JSON and some columns are not string.Please update to the current 1.1.0 release which addresses this issue. Allan