瀏覽代碼

Limit the size of the table to fit the screen.

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@113 a333f486-631f-4898-b8df-5754b55c2be0
dflaven 16 年之前
父節點
當前提交
96518298bf
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      application/uilinkswizard.class.inc.php

+ 7 - 0
application/uilinkswizard.class.inc.php

@@ -146,6 +146,13 @@ class UILinksWizard
 				function(data)
 				function(data)
 				{
 				{
 					$('#SearchResultsToAdd').html(data);
 					$('#SearchResultsToAdd').html(data);
+					nb_rows = $('#SearchResultsToAdd table.listResults tr').length;
+					if(nb_rows > 10)
+					{
+						$('#SearchResultsToAdd table.listResults tbody').attr('height', '300px');
+						$('#SearchResultsToAdd .listResults tbody').css('overflow', 'auto');
+					}
+					
 				},
 				},
 				'html'
 				'html'
 			);
 			);