20 lines
624 B
JavaScript
20 lines
624 B
JavaScript
$(function()
|
|
{
|
|
var resizeChartTable = function()
|
|
{
|
|
$('.table-wrapper').each(function()
|
|
{
|
|
var $this = $(this);
|
|
$this.css('max-height', $this.closest('.table').find('.chart-wrapper').outerHeight());
|
|
});
|
|
};
|
|
resizeChartTable();
|
|
$(window).resize(resizeChartTable);
|
|
});
|
|
|
|
function changeChartType(type)
|
|
{
|
|
$('form').attr('action', createLink('testtask', 'report', 'productID=' + productID + '&taskID=' + taskID + '&browseType=' + browseType + '&branchID=' + branchID + '&moduleID=' + moduleID + '&chartType=' + type));
|
|
$('form').find('#submit').click();
|
|
}
|