Lines Matching refs:f

64 	var f = t.tf_Obj, n = t.tf_ncells;	
72 f!=undefined && f["grid"]==false ? fltgrid=false : fltgrid=true;//enables/disables filter grid
73f!=undefined && f["btn"]==true ? displayBtn=true : displayBtn=false;//show/hides filter's validati…
74f!=undefined && f["btn_text"]!=undefined ? btntext=f["btn_text"] : btntext="go";//defines button t…
75 f!=undefined && f["enter_key"]==false ? enterkey=false : enterkey=true;//enables/disables enter key
76f!=undefined && f["mod_filter_fn"] ? modfilter_fn=true : modfilter_fn=false;//defines alternative …
77f!=undefined && f["display_all_text"]!=undefined ? display_allText=f["display_all_text"] : display…
78f!=undefined && f["on_change"]==false ? on_slcChange=false : on_slcChange=true;//enables/disables …
79f!=undefined && f["rows_counter"]==true ? displaynrows=true : displaynrows=false;//show/hides rows…
80f!=undefined && f["rows_counter_text"]!=undefined ? totrows_text=f["rows_counter_text"] : totrows_…
81 f!=undefined && f["btn_reset"]==true ? btnreset=true : btnreset=false;//show/hides reset link
82f!=undefined && f["btn_reset_text"]!=undefined ? btnreset_text=f["btn_reset_text"] : btnreset_text…
83f!=undefined && f["sort_select"]==true ? sort_slc=true : sort_slc=false;//enables/disables select …
84f!=undefined && f["paging"]==true ? displayPaging=true : displayPaging=false;//enables/disables ta…
85f!=undefined && f["paging_length"]!=undefined ? pagingLength=f["paging_length"] : pagingLength=10;…
86f!=undefined && f["loader"]==true ? displayLoader=true : displayLoader=false;//enables/disables lo…
87f!=undefined && f["loader_text"]!=undefined ? load_text=f["loader_text"] : load_text="Loading...";…
88f!=undefined && f["exact_match"]==true ? exactMatch=true : exactMatch=false;//enables/disbles exac…
89f!=undefined && f["alternate_rows"]==true ? alternateBgs=true : alternateBgs=false;//enables/disbl…
90f!=undefined && f["col_operation"] ? colOperation=true : colOperation=false;//enables/disbles colu…
91f!=undefined && f["rows_always_visible"] ? rowVisibility=true : rowVisibility=false;//makes a row …
92 f!=undefined && f["col_width"] ? colWidth=true : colWidth=false;//defines widths of columns
93 f!=undefined && f["bind_script"] ? bindScript=true : bindScript=false;
116 if(modfilter_fn) t.tf_modfilter_fn = f["mod_filter_fn"];// used by DetectKey fn
128 if(f==undefined || f["col_"+i]==undefined || f["col_"+i]=="none")
131 (f==undefined || f["col_"+i]==undefined) ? inptype="text" : inptype="hidden";//show/hide input
137 else if(f["col_"+i]=="select")
153 (!modfilter_fn) ? slc.onchange = function(){ Filter(id); } : slc.onchange = f["mod_filter_fn"];
167 … (!modfilter_fn) ? btn.onclick = function(){ Filter(id); } : btn.onclick = f["mod_filter_fn"];
262 t.tf_colWidth = f["col_width"];
271 t.tf_colOperation = f["col_operation"];
277 t.tf_rowVisibility = f["rows_always_visible"];
283 t.tf_bindScript = f["bind_script"];