* Fix bug #29224, 29094.
This commit is contained in:
@@ -41,8 +41,10 @@ $(function()
|
||||
$('.switchButton').click(function()
|
||||
{
|
||||
var viewType = $(this).attr('data-type');
|
||||
var branchID = $(this).val();
|
||||
$.cookie('viewType', viewType, {expires:config.cookieLife, path:config.webRoot});
|
||||
window.location.reload();
|
||||
var link = createLink('productplan', 'browse', "productID=" + productID + '&branch=' + branchID);
|
||||
location.href = link;
|
||||
});
|
||||
|
||||
$('#branch').change(function()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php $canOrder = (common::hasPriv('program', 'updateOrder') and strpos($orderBy, 'order') !== false)?>
|
||||
<form class='main-table' id='programForm' method='post' data-ride='table' data-nested='true' data-expand-nest-child='false' data-checkable='false' data-enable-empty-nested-row='true' data-replace-id='programTableList' data-preserve-nested='true'>
|
||||
<form class='main-table' id='programForm' method='post' data-ride='table' data-nested='true' data-expand-nest-child='false' data-checkable='false' data-enable-empty-nested-row='true' data-replace-id='programTableList' data-preserve-nested='true' data-nest-level-indent='22'>
|
||||
<table class='table has-sort-head table-fixed table-nested' id='programList'>
|
||||
<?php $vars = "status=$status&orderBy=%s";?>
|
||||
<thead>
|
||||
|
||||
@@ -4,14 +4,14 @@ $(function()
|
||||
{
|
||||
var involved = $(this).is(':checked') ? 1 : 0;
|
||||
$.cookie('involved', involved, {expires: config.cookieLife, path: config.webRoot});
|
||||
window.location.reload();
|
||||
location.href = location.href;
|
||||
});
|
||||
|
||||
$('[id="switchButton"]').click(function()
|
||||
{
|
||||
var projectType = $(this).attr('data-type');
|
||||
$.cookie('projectType', projectType, {expires: config.cookieLife, path: config.webRoot});
|
||||
window.location.reload();
|
||||
location.href = location.href;
|
||||
});
|
||||
|
||||
$('input[name^="showEdit"]').click(function()
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
.c-name {max-width: 100px;}
|
||||
#profile {vertical-align: unset;}
|
||||
.c-full-date {width: 190px;}
|
||||
|
||||
Reference in New Issue
Block a user