2014-03-02 81 views
0

爲什麼顯示我這樣劍道格:劍道UI網格高度底邊框重疊

kendo grid bottom border issue

+0

幫助那些可能幫助你的人:你會不會喜歡鏈接到一個重現你的問題的小提琴? – FelipeAls

+0

現在我無法做到這一點(在工作中),但是在我變得自由時應該添加fiddel,我認爲有人會遇到這個問題。 –

+0

你是如何設置網格高度的? – OnaBai

回答

0

如果手動調整電網,必須同時調整網格和數據區的高度。如果你有一個工具欄,你可能也需要考慮到這一點。試試這個,當你調整你的網格:

var gridElement = $("#gridElementName"); 
var dataArea = gridElement.find(".k-grid-content"); 
var toolbar = gridElement.find(".k-toolbar"); 
var thead = gridElement.find("table[role='grid'] thead"); 
var newGridHeight; 
var newDataAreaHeight; 

newGridHeight = $(document).height() - offsetValueOne; 
newDataAreaHeight = newGridHeight - toolbar.height() - thead.height() - offsetValueTwo; 
dataArea.height(newDataAreaHeight); 
dataArea.css("max-height", newDataAreaHeight); 
gridElement.height(newGridHeight); 

OffsetValueOne應該比OffsetValueTwo大。在你的代碼中,數據區和網格高度似乎沒有正確匹配。希望這可以幫助。祝你好運。