Blame view

lib/model/gen-filter.d.ts 1.18 KB
75f29219   Anan Sangthongtum   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { GenFilterOptions } from './gen-filter-options';
export declare class GenFilter {
    /**
     * เปิด-ปิด การลบ key ที่มีค่าว่างออกจาก filter
     */
    options: GenFilterOptions;
    /**
     * loadOptions ของ fn. CustomStore
     */
    loadOptions?: any;
    /**
     * กรณีมี field เพิ่มเติมที่ต้องการส่งค่าไปพร้อมกับ URL
     */
    filterList?: any;
    /**
     * กรณีมี field dateTime ที่ต้องการ fix ค่า
     */
    exceptionList?: any;
    constructor(
    /**
     * เปิด-ปิด การลบ key ที่มีค่าว่างออกจาก filter
     */
    options: GenFilterOptions, 
    /**
     * loadOptions ของ fn. CustomStore
     */
    loadOptions?: any, 
    /**
     * กรณีมี field เพิ่มเติมที่ต้องการส่งค่าไปพร้อมกับ URL
     */
    filterList?: any, 
    /**
     * กรณีมี field dateTime ที่ต้องการ fix ค่า
     */
    exceptionList?: any);
}