zentaopms/module/kanban/js/createcolumn.js
2023-05-16 10:47:08 +08:00

25 lines
504 B
JavaScript

$(function()
{
initColorPicker();
$('#noLimit').click(function()
{
if($(this).attr('checked') == 'checked')
{
$('#WIPCount').val('');
$('#WIPCount').attr('disabled', true);
}
else
{
$('#WIPCount').removeAttr('disabled');
}
})
})
function setWIPLimit()
{
var count = $('#WIPCount').val();
if($('#noLimit').attr('checked') == 'checked') count = -1;
$('#limit').val(count);
}