}
renderSources();
+
+ return true;
}
function addReportAtoms () {
}
renderSources();
+
+ return true;
}
function changeDisplayOrder (dir) {
}
tree.view.selection.select( item_pos );
+ return true;
}
function alterColumnLabel () {
renderSources(true);
tree.view.selection.select( item_pos );
}
+
+ return true;
}
function alterColumnTransform (trans) {
renderSources(true);
tree.view.selection.select( item_pos );
+ return true;
}
function changeOperator (args) {
renderSources(true);
tree.view.selection.select( item_pos );
+ return true;
}
function removeTemplateFilterValue () {
renderSources(true);
tree.view.selection.select( item_pos );
+ return true;
}
function timestampSetDate (obj, cal, date) {
obj.op_value.label = '"' + date + '"';
renderSources(true);
+ return true;
}
var __handler_cache;
var calendar = new Calendar(
0,
obj.op_value.object,
- function (cal,date) { timestampSetDate(obj,cal,date) },
- function (cal) { cal_popup.hidePopup(); cal.destroy(); }
+ function (cal,date) { return timestampSetDate(obj,cal,date) },
+ function (cal) { cal_popup.hidePopup(); cal.destroy(); return true; }
);
var format = OILS_RPT_TRANSFORMS[obj.transform].cal_format || '%Y-%m-%d';
targetCmd.removeEventListener( 'command', __bool_value_event_handler, true );
renderSources(true);
tree.view.selection.select( item_pos );
+ return true;
}
__handler_cache = __bool_value_event_handler;
targetCmd.removeEventListener( 'command', __default_value_event_handler, true );
renderSources(true);
tree.view.selection.select( item_pos );
+ return true;
}
__handler_cache = __default_value_event_handler;
}
}
- //renderSources(true);
+ return true;
}
function populateOperatorContext () {