setStateBar
Description
그리드 StateBar와 관련된 정보들을 설정한다. StateBar가 설정 모델이다.
Syntax
function setStateBar(options)
Parameters
options
Type: object
StateBar 모델과 같은 설정 정보. StateBar 모델의 속성들 중 변경하고자 하는 값들만 전달하면 된다.
Return value
None.
Examples
gridView.setStateBar({
width: 20,
visible: true,
mark: "text",
stateTexts: {
created: "C",
updated: "U",
deleted: "D",
createAndDeleted: "X"
},
headText: "head",
footText: "foot",
headImageUrl: "/img/common/dot_arrow2_top.gif",
footImageUrl: "/img/common/dot_arrow2_bottom.gif"
});
RealGrid HELP