inline edit 에서 select 를 사용중입니다. options 를 ajax를 통해 가변하고 싶습니다.

{
key: “keyin”,
label: “검색”,
align: “center”,
formatter: function(){
return [
’ ’
].join(’’);
}
},
{
align: “center”,key: “sele”, label: ‘셀렉트’, editor: {
type: “select”, value:‘99’, config: {
columnKeys: {optionValue: “NO”, optionText: “TITLE”},
options: tempopt
},
disabled: function () {
return false;
}
}
, formatter : function (a,b) {
console.log(tempopt);
for (var i = 0; i < tempopt.length; i++) {
if (tempopt[i].NO == this.value) {
return tempopt[i].NO;
}
}
}
},

keyin 필드에서 키보드 입력을 받은 후 거기에 맞게 ajax 를 통신하여 tempopt 의 값을 변경하고 있는데.
실제 options : tempopt 는 변함이 없네요.
ajax 는 async false 한 상태입니다.

ajax는 keyin의 keypress 할때 동작하게 하였습니다. 시점의 차이가 있을까요?