目前我使用javascript来消除右下角的边框,具体代码如下:
if (document.attachEvent)
window.attachEvent("onload", initSpread);
else if (document.addEventListener)
window.addEventListener("load", initSpread);
function initSpread() {
var spread1 = document.getElementById("<%=FpSpread1.ClientID %>");
var headerRow = spread1.getRowHeader().tBodies[0].rows
var headerCell = headerRow[headerRow.length - 1].cells[0];
headerCell.style.borderStyle = "none";
}
当然,这样可能会有一些隐患。
请教spread的设定方法。 |