'SELECT * FROM'에 해당되는 글 128건
- 2011.05.20 ExtJS - config 사용 예제
- 2011.05.03 EXT JS - Form load and submit
- 2011.04.28 EXJ JS - 인벤토리 구현
- 2011.04.28 EXT JS - MessageWindow
- 2011.04.28 EXT JS - Grid in Card Layout
- 2011.04.28 EXJ JS - Grid in An Accordion
- 2011.04.28 EXT JS - CheckTreePanel in Form
- 2011.04.28 EXT JS - Simple Message Bus by Saki
- 2011.04.28 EXT JS - Cross domain Ajax using HTTP Access Control
- 2011.04.25 EXT JS - store 로드 되기 전에 baseParams 지정하기 (Grid Paging 시 추가 파라미터 지정하여 검색 처리)
// 저장소 데이터 가져오기
this.store = SGP.AUTH.Data.connectionLogStore(this.url_list, this.pagesize);
/**
* Paging 시 store 가 로드되기 전에 검색 관련 params 를 설정.
* @author 김기용
* @since 2011.04.25
*/
this.store.on({
'beforeload': {
fn: function (store, options) {
method = 'UserID';
keyword = this.userID;
// 검색 기간
var startDate = Ext.get("StartDate").dom.value;
var endDate = Ext.get("EndDate").dom.value;
var where = startDate + "::" + endDate;
if (where == "::") {
where = '';
}
store.baseParam = { 'method':'UserID', 'keyword':this.userID, 'where': where };
}
}
});