Minimizing/hiding sub tasks on a tasks list in office 365
By default sharepoint will show all the subtask on a tasks list to minimize them use the below script by adding script editor webpart on tasks pages
<script src="https://sharepointsiteurl/SiteAssets/JS%20file/jquery-1.9.1.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$(".ms-commentcollapse-icon").click();
});
</script>
No comments:
Post a Comment