Search
43891 results 7021-7030
Forum
- 27th Aug 2013Table Tools excel pop up in new windowNo - there is no option to do that in Flash. Its a limitation of the Flash platform, not TableTools. Allan
- 14th Aug 2013Table slow on IE 8 becauses of code in fnDrawCallbackI doubt that the use of DataTables makes any difference to the performance of the auto complete plug-in. There are several others other than jQuery UI's, but I can't speak for their performance. Allan
- 7th Aug 2013Datatables sDom add new elements to bottom and top of tableVery likely to need to alter the CSS. Have a look at the DOM in your browser's web dev tools and check that the DOM order is correct (it should be!), but you need to use CSS to get the visual positioning. Allan
- 25th Jul 2013Table with 2 Fixed columns, scroll-x and with no sorting first columnCan anybody help please ?? :(
- 24th Jul 2013Problem with click on table with new dataSounds like the top FAQ: http://datatables.net/faqs#events
- 29th Jun 2013Why do I get this error? "aData is undefined" when creating my table with a Json sourceAs you can see - the example works okay, so I'm afraid I don't know what would be causing the error as I don't know what modifications you've made. Allan
- 12th Jun 2013Changing the Default text when a table intialises with no records:This is what you are searching for: http://datatables.net/release-datatables/examples/advanced_init/language_file.html http://datatables.net/usage/i18n
- 9th Jun 2013Inject html tags into data tableA method like this might work for you: http://datatables.net/release-datatables/examples/advanced_init/dom_toolbar.html . Another option is to create a feature plug-in: http://datatables.net/blog/Creating_feature_plug-ins Allan
- 28th May 2013Making table responsive (hiding column automatically)Just the jQuery standard way: $('td').width() Allan
- 21st May 2013Dropdown list in editable table posts the index and not the text selectedThe problem was that I was returning the list of states in the this format: [["AL"],["AK"],["AZ"],["AR"],["CA"],["CO"],["CT"]] I needed it in this format: {"AL":"AL","AK":"AK","AZ":"AZ","AR":"AR","CA":"CA","CO":"CO","CT":"CT"} I changed the controller method to return the state abbreviation as a two-dimensional array var states = stateList.Select(f => new[] { f.StateAbbv.ToString(), f.StateAbbv.ToString() }); I then wrote a function to replace some characters to achieve the needed format.