jqGrid의 기본 콤보박스(select)에 이벤트 바인딩 하기

By | 5월 30, 2013

* 칼럼모델 > editoptions > dataEvents 속성을 정의해 준다.


{name:'TAX_GBN',   index:'TAX_GBN',   width:90, editable:true,  edittype:'select', formatter:'select', align:'center',

  editoptions:{

  value:'1:A;2:B;3:C', 

   dataEvents:[{ type:'change', fn: function(e){

var rowId = $grid1[0].p.selrow;

alert(rowId);

        }}]

  }  

},

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments