zentaopms/extension/biz/workflowhook/ext/view/create.flow.html.hook.php
2023-05-16 10:50:42 +08:00

12 lines
291 B
PHP

<script>
$(function()
{
$('#hookDIV .table-form tr:first td.w-100px').width('90').removeClass('w-100px');
$(document).on('click', '.btn.addWhere', function()
{
var $nextWhere = $(this).closest('tr').next();
$nextWhere.find('#field').chosen();
})
})
</script>