var location = this.options.location; //获取当前控件的位置
var cr = FR.cellStr2ColumnRow(location);
var c = cr.col; //列号
var r = cr.row; //行号
var cell = FR.columnRow2CellStr({col: c-2, row: r}); //获取文件当前单元格
var w = $(".x-table").find("td[id^=" + cell + "-]").width();
var h = $(".x-table").find("td[id^=" + cell + "-]").height();
alert("当前单元格宽:" + w + "px,高:" + h + "px");
如果知道控件的单元格(如C6),可以直接获取单元格属性:
var cell = "C6";
var w = $(".x-table").find("td[id^=" + cell + "-]").width();
var h = $(".x-table").find("td[id^=" + cell + "-]").height();
alert("当前单元格宽:" + w + "px,高:" + h + "px");