rfe #2964518 [interface] Allow to choose servers from configuration for synchronisation.
This commit is contained in:
@@ -5,6 +5,24 @@
|
||||
*/
|
||||
$(document).ready(function() {
|
||||
$('.server_selector').change(function() {
|
||||
$(this).closest('tbody').children('.toggler').toggle();
|
||||
var server = $('.server_selector').val();
|
||||
if (server == 'cur') {
|
||||
$(this).closest('tbody').children('.current-server').css('display', '');
|
||||
$(this).closest('tbody').children('.remote-server').css('display', 'none');
|
||||
} else if (server == 'rmt') {
|
||||
$(this).closest('tbody').children('.current-server').css('display', 'none');
|
||||
$(this).closest('tbody').children('.remote-server').css('display', '');
|
||||
} else {
|
||||
$(this).closest('tbody').children('.current-server').css('display', 'none');
|
||||
$(this).closest('tbody').children('.remote-server').css('display', '');
|
||||
var parts = server.split('||||');
|
||||
$('#src_host').val(parts[0]);
|
||||
$(this).closest('tbody').find('.server-host').val(parts[0]);
|
||||
$(this).closest('tbody').find('.server-port').val(parts[1]);
|
||||
$(this).closest('tbody').find('.server-socket').val(parts[2]);
|
||||
$(this).closest('tbody').find('.server-user').val(parts[3]);
|
||||
$(this).closest('tbody').find('.server-pass').val('');
|
||||
$(this).closest('tbody').find('.server-db').val(parts[4])
|
||||
}
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user