58 lines
2.3 KiB
JavaScript
58 lines
2.3 KiB
JavaScript
function showLink(planID, type, orderBy, param)
|
|
{
|
|
var method = type == 'story' ? 'linkStory' : 'linkBug';
|
|
$.get(createLink('productplan', method, 'planID=' + planID + (typeof(param) == 'undefined' ? '' : param) + (typeof(orderBy) == 'undefined' ? '' : "&orderBy=" + orderBy)), function(data)
|
|
{
|
|
var $pane = $(type == 'story' ? '#stories' : '#bugs');
|
|
$pane.find('.main-table').hide();
|
|
var $linkBox = $pane.find('.linkBox').html(data).removeClass('hidden');
|
|
$linkBox.find('[data-ride="table"]').table();
|
|
$.toggleQueryBox(true, $linkBox.find('#queryBox'));
|
|
});
|
|
|
|
$('.actions').find("a[href*='" + type + "']").addClass('hidden');
|
|
}
|
|
|
|
$(function()
|
|
{
|
|
if(link == 'true') showLink(planID, type, orderBy, param);
|
|
$('.nav.nav-tabs a[data-toggle="tab"]').on('shown.zui.tab', function(e)
|
|
{
|
|
var href = $(e.target).attr('href');
|
|
var tabPane = $(href + '.tab-pane');
|
|
if(tabPane.size() == 0) return;
|
|
var formID = tabPane.find('.linkBox').find('form:last');
|
|
if(formID.size() == 0) formID = tabPane.find('form:last');
|
|
});
|
|
|
|
$('.dropdown-menu.with-search .menu-search').click(function(e)
|
|
{
|
|
e.stopPropagation();
|
|
return false;
|
|
}).on('keyup change paste', 'input', function()
|
|
{
|
|
var val = $(this).val().toLowerCase();
|
|
var $options = $(this).closest('.dropdown-menu.with-search').find('.option');
|
|
if(val == '') return $options.removeClass('hide');
|
|
$options.each(function()
|
|
{
|
|
var $option = $(this);
|
|
$option.toggleClass('hide', $option.text().toString().toLowerCase().indexOf(val) < 0 && $option.data('key').toString().toLowerCase().indexOf(val) < 0);
|
|
});
|
|
});
|
|
|
|
$('#storyList').on('sort.sortable', function(e, data)
|
|
{
|
|
var list = '';
|
|
for(i = 0; i < data.list.length; i++) list += $(data.list[i].item).attr('data-id') + ',';
|
|
$.post(createLink('productplan', 'ajaxStorySort', 'planID=' + planID), {'storys' : list, 'orderBy' : orderBy}, function()
|
|
{
|
|
var $target = $(data.element[0]);
|
|
$target.hide();
|
|
$target.fadeIn(1000);
|
|
order = 'order_asc';
|
|
history.pushState({}, 0, createLink('productplan', 'view', "planID=" + planID + '&type=story&orderBy=' + order));
|
|
});
|
|
});
|
|
});
|