2011-09-16 67 views
1

我一直想在Windows平臺上使用tableToGrid函數將table轉換爲jqGrid。出於某種原因,如果有新的線符號,它會增加行高度兩次。有人知道它是否是一個功能或錯誤,我怎樣才能改變行爲忽略新的行字符有正常的行高?爲什麼jqGrid的tableToGrid會在表格單元格中出現新行字符時創建雙高度行?

<head> 
    <script type="text/javascript"> 
     $(document).ready(function() { 
      tableToGrid('#mytable', { 
       caption: "My converted table!", 
       pager: '#mypager', 
       multiselect: true, 
       height: 'auto', 
       gridview: true 
      }); 
     }); 
    </script> 
</head> 

<body> 
    <table id="mytable" cellspacing=0 cellpadding=1 border=1> 
     <thead> 
     <tr> 
       <th>Icon</th> 
       <th>Platform</th> 
       <th>Size</th>  
     </tr> 
     </thead> 
     <tbody> 
     <tr> 
       <td><img src="http://icons.iconarchive.com/icons/visualpharm/must-have/16/Properties-icon.png" alt=""></td> 
       <td>PC</td> 
       <td>12</td> 
     </tr> 
     <tr> 
       <td> 
      <img src="http://icons.iconarchive.com/icons/visualpharm/must-have/16/Properties-icon.png" alt=""> 
     </td> 
       <td>Mac</td> 
       <td>15</td> 
     </tr> 
     </tbody> 
    </table> 
    <div id="mypager"></div> 
</body> 
</html> 

回答

0

我碰到類似的東西。您是否嘗試將這個表合併成如下這樣的一行:

<tr><td><img src="http://icons.iconarchive.com/icons/visualpharm/must-have/16/Properties--con.png" alt=""></td><td>PC</td><td>12</td></tr> 
+0

是的。在示例代碼中查看第二行對第一行。我花了很多時間纔得到這個竅門。但它沒有回答爲什麼發生這種情況。對我來說看起來像一個bug。 – myforums

相關問題