或許使用寫個簡單的js判斷一下就好,在樣板tad_uploader_index.tpl加入
<script type="text/javascript">
$(document).ready(function() {
$("form").submit(function(event) {
var path = $(this).find("select[name='add_to_cat']").val();
var new_cate = $(this).find("input[name='creat_new_cat']").val();
if(path == 0 && new_cate.length == 0) {
swal("根目錄不能上傳喔,請重新選擇目錄或新增目錄")
return false;
}
return true;
});
});
</script>