Not able to fix column through Fixed Column plug in. Plz help !!!!!!!
Not able to fix column through Fixed Column plug in. Plz help !!!!!!!
vaibhavjuneja
Posts: 1Questions: 0Answers: 0
I am not able to fix column by using Fixed Columns plugins. I am using webobjects framework. and implementing this datatables concept in table control for my product. I am using jquery.js version 1.6.2 . and it is giving exception in line -16 ,char - 32323. when applying this some screens UI changes fully and they are not able to show any datatables UI. and if any screen is showing the column fixed there UI is distorted. Plz help me . Kindly see the code below : -
$(document).ready(function() {
var oTable = $('#').dataTable({
"sScrollX": "100%",
"sScrollY": "100%",
"bScrollCollapse": true,
"bJQueryUI": true,
"sPaginationType": "full_numbers"
});
new FixedColumns(oTable, {
"iLeftWidth": 150
} );
$('form').submit(function(){
$(oTable.fnGetHiddenTrNodes()).appendTo(this);
});
});
Select
$(document).ready(function() {
var oTable = $('#').dataTable({
"sScrollX": "100%",
"sScrollY": "100%",
"bScrollCollapse": true,
"bJQueryUI": true,
"sPaginationType": "full_numbers"
});
new FixedColumns(oTable, {
"iLeftWidth": 150
} );
$('form').submit(function(){
$(oTable.fnGetHiddenTrNodes()).appendTo(this);
});
});
Select
This discussion has been closed.
Replies