2023-05-16 10:50:42 +08:00

96 lines
2.8 KiB
JavaScript

$(document).ready(function()
{
/* expand active tree. */
$('#' + window.category).parent().addClass('active');
$('.tree').tree('expandSelect', '.active');
if(typeof window.label !== undefined && window.label)
{
$('#subNavbar .nav li').removeClass('active');
if(config.requestType == 'GET')
{
$("#subNavbar .nav li a[href*=browse][href*='label\=" + window.label + "']").parent('li').addClass('active');
}
else
{
$("#subNavbar .nav li a[href*=browse][href*='browse-" + window.label + ".html']").parent('li').addClass('active');
}
}
if(window.mode == 'search') $('#subNavbar .nav #bysearchTab').click();
if($('#searchTab').length == 1) $('#subNavbar .nav').append($('#searchTab'));
$('.toggleTreeMenu').click(function()
{
var text = $(this).text();
var type = $(this).data('type');
$('.currentMenu').html(text + "<span class='caret'></span>");
$('.treeMenuBox').hide();
$('.treeMenuBox#' + type + 'Box').show();
});
$(document).on('click', 'td.child .addItem', function()
{
var child = $(this).parents('table').data('child');
$(this).closest('tr').after(window.itemRows[child].replace(/KEY/g, window.childKey));
initSelect($(this).closest('tr').next().find('.picker-select'));
$(this).closest('tr').next().find('.form-date, .form-datetime').datetimepicker(
{
language: config.clientLang,
weekStart: 1,
todayBtn: 1,
autoclose: 1,
todayHighlight: 1,
startView: 2,
minView: 2,
forceParse: 0,
format: 'yyyy-mm-dd'
});
});
$(document).on('click', 'td.child .delItem', function()
{
if($(this).parents('.table-child').find('tr').size() > 1)
{
$(this).closest('tr').remove();
}
else
{
$(this).closest('tr').find('input,select,textarea').val('');
}
})
$('.reloadPage').click(function()
{
url = $(this).attr('href');
$.getJSON(url, function(response)
{
if(response.message)
{
bootbox.alert(response.message, function()
{
if(response.locate)
{
location.href = response.locate;
return false;
}
location.reload();
});
}
else
{
if(response.locate)
{
location.href = response.locate;
return false;
}
location.reload();
}
});
return false;
});
})