SMART datagrid v.1 > Classes > CellIndex
この位置のセルに該当するカラムがカラムグループならカラムグループ客体を、でなければnullをリターンする。
カラムグループではないカラム達はすべてValueColumnを受け継いで、 valueColumnプロパティーで確認できる。
$('#expand').click(function () {
var group = grid.focusedIndex().group();
if (group) {
group.expand();
}
});