mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-19 12:55:08 +02:00
Some more work toward completion:
- Wizard now works to define input definitions; you can define the mapping, translations and conditions using the UI. - Added ability to schedule imports / export using async services Still a lot of work to be done...
This commit is contained in:
@@ -13,16 +13,19 @@ function export_dialog() {
|
||||
|
||||
this.change_definition = function(sel_obj) {
|
||||
if(sel_obj.value == 'expert') {
|
||||
xajax_doXMLHTTP('importexport.uiexport.ajax_get_plugins',document.getElementById('exec[appname]') ? document.getElementById('exec[appname]').value : this.appname);
|
||||
// next two lines fix some strange layout bug
|
||||
set_style_by_class('tr','select_definition','display','none');
|
||||
set_style_by_class('tr','select_definition','display','inline');
|
||||
set_style_by_class('tr','select_plugin','display','inline');
|
||||
//set_style_by_class('tr','select_definition','display','none');
|
||||
//set_style_by_class('tr','select_definition','display','inline');
|
||||
set_style_by_class('tr','select_plugin','display','table-row');
|
||||
set_style_by_class('tr','save_definition','display','inline');
|
||||
}
|
||||
else {
|
||||
xajax_doXMLHTTP('importexport.uiexport.ajax_get_definition_description',sel_obj.value);
|
||||
set_style_by_class('tr','select_plugin','display','none');
|
||||
set_style_by_class('tr','save_definition','display','none');
|
||||
}
|
||||
};
|
||||
this.appname = '';
|
||||
}
|
||||
var export_dialog = new export_dialog();
|
||||
var export_dialog = new export_dialog();
|
||||
|
Reference in New Issue
Block a user