2011-07-31 3 views
0

jquery 데이터 테이블로 스크롤 가능한 콘텐츠를 만들 수있는 방법은 무엇입니까 ?? . 여기 jquery 데이터 테이블로 스크롤 가능한 콘텐츠 만들기

내 스크립트입니다 : 내가 파이어 폭스 3.6.19에서 그것을 시도 할 때

oTable = $('#tablex').dataTable 
    ({ 
     "sDom": "<'scrollContent't>T<'fg-toolbar ui-widget-header ui-corner-tl ui-corner-tr ui-helper-clearfix'lfr>t<'fg-toolbar ui-widget-header ui-corner-bl ui-corner-br ui-helper-clearfix'ip>", 
     "bJQueryUI": true, 
     "aoColumns": [ 
     null, 
     null, 
     { "sType": "formatted-num" }, 
     { "sType": "formatted-num" }, 
     { "sType": "formatted-num" }, 
     { "sType": "num-html" }, 
     { "sType": "num-html" }], 
     "aLengthMenu": [[10, 15, -1], [10, 15, "All"]], 
     "fnRowCallback": function(nRow, aData, iDisplayIndex, iDisplayIndexFull) { 
     /* Bold the grade for all 'A' grade browsers */ 
      var index = iDisplayIndex +1; 
      $('td:eq(0)',nRow).html(index); 
      return nRow; 
     } 
    }); 

이 난 파이어 폭스 5.0.1에서 그것을 시도 할 때, 그것은 작동하지 않습니다입니다 @ 작품은 잘 보이지만 @ 거기에 내 스크립트와 잘못 anyhing 무엇입니까 ?? 어쩌면 누구든지 나를 도울 수 있습니까 ??

답변

관련 문제