ax5ui grid 에서 select type 셀에 text 표시 (바인딩은 value 로 함)

ax5ui grid 에서 select type 사용시 value 가 컬럼에 표시되고 편집시에만 text 가 보여지는데요.

값은 value 이지만, 보여지는 값을 text 로 보이게 할 수 있을까요?

column 선언 부분은 다음과 같습니다.

		columns.push({label : "고용형태",       key : "employee_div",       width : 70,  align: "left",                     
			editor: {
                type: "select", config: {
                    columnKeys: {
                        optionValue: "id", optionText: "text"
                    },
                    options: [{"id":"M","text":"관리직"},{"id":"P","text":"생산직"}]
                }
			}				
        });