我想问一下,就好行列号及水平垂直线在按钮中可以控制显示和隐藏,但是我想在打开报表的时候默认都是隐藏的,按照API中的方法将各方法设置为false,像工具栏,滚动栏之类的可以隐藏,但是行列号及水平垂直线,没有起到作用,想问一下原因在那?请大牛们指点,非常感谢!
测试代码如下:
$(document).ready(function () {
$("#ss").wijspread();
var spread = $("#ss").wijspread("spread");
var sheet = spread.getActiveSheet();
$.ajax({
url: "TestFile.ssjson",
datatype: "json",
success: function (data) {
spread.isPaintSuspended(true);
spread.fromJSON(JSON.parse(data));
spread.isPaintSuspended(false);
sheet.setRowHeaderVisible(false);
sheet.setColumnHeaderVisible(false);
sheet.setGridlineOptions({
showVerticalGridline : false,
showHorizontalGridline : false
});
sheet.setGridlineOptions({
showVerticalGridline : false,
showHorizontalGridline : false
});
spread.tabStripVisible(false);
spread.newTabVisible(false);
spread.showHorizontalScrollbar(false);
spread.showVerticalScrollbar(false);
sheet.isPaintSuspended(false);
},
error: function (ex) {
alert('Exception:' + ex);
}
});
}); |