검색한 후 검색어를 적용하면서 페이지를 이동하는 경우 검색어등의 파라미터를 넘길경우 아래와 같이 하면 된다.
store.on({
'beforeload':{
fn: function(store, options){
Ext.apply(options.params, {stext: document.getElementById('searchVal').value});
}
}
});
'beforeload':{
fn: function(store, options){
Ext.apply(options.params, {stext: document.getElementById('searchVal').value});
}
}
});
'프로그래밍 > ExtJS' 카테고리의 다른 글
[ExtJS] Ext JS 3.1 Designed Class Diagram (0) | 2010.01.18 |
---|---|
[ExtJS] 한글 전송하기 (0) | 2010.01.17 |
[ExtJS] ComboBox Value 값 안 넘어갈 경우 설정 (0) | 2010.01.17 |