Search
10720 results 6571-6580
Forum
- 3rd Jan 2013Vertical Scrolling Messes up Column Header Alignmentscrollbar properly during the initial loading, but whenever i
- 30th Dec 2012bDeferRender doesn't work with mRender?Correct - if you look at the type (2nd parameter) sent into mRender, it gets called for 'sort' and 'filter' in the initial run. 'display' is used for when the cell gets displayed. fnCreatedCell / fnCreatedRow might also be of interest. Allan
- 29th Dec 2012After getting data table rows through sAjaxSource i am unable to hide column using aoColumnDefsPlease see http://datatables.net/forums/discussion/12899/post-test-cases-when-asking-for-help-please-read Also, if you want to hide columns after initialisation, don't use the initialisation options (which are for initialisation time only), use the API ( fnSetColumnVis ). Allan
- 28th Dec 2012Setting table properties after it has been initializedYou cannot - these options are initialisation options and can be set at initialisation time only. You'd need to destroy the table and recreate it with the new options. Allan
- 28th Dec 2012Updating properties of only a given column1.10. Having said that, initialisation options such as setting
- 24th Dec 2012Change datatable columns properties ( aoColumns ) when we wishchange a setting after initialisation you need to destroy
- 24th Dec 2012Why is this not working??is a plugin: the initialisation code doesn't show how
- 23rd Dec 2012Update the datatable properties with the json data ( ajaxcallback ) and redraw the table afterthe settings object after initialisation is absolutely not supported,
- 20th Dec 2012How to set a property dynamically using javascript on oTableHow are you initialising the DataTable? You'd just add a condition based on that. Perhaps something like: [code] if ( pagingFull ) { $(node).dataTable( { sPaginationType: 'full_numbers' } ); } else { // ... etc } [/code] Allan
- 20th Dec 2012bRegex does not work with server side processingThere is no bRegex column option - its a column filtering option that is set as part of your call to fnFilter - not in the column initialisation. I suspect that's the issue. Allan