J
.jussi
I have made some progress. By using some javascript trickery, I am able to
control the size of the my tasks web part - but the bad thing is, currently I
am ending up with broken headers on the web part.
What I do is simply inject jquery through a content editor web part and edit
the my tasks via javascript. Note that this example pulls the jquery from
google api's for being ready to rock on a copy/paste's notice, but you may
want to upload a copy to your PWA and use it from there.
Oh, and I take no responsibility for anything breaking, of course...
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"
type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("#TaskPart_Grid_Div").removeAttr("style");
});
</script>
control the size of the my tasks web part - but the bad thing is, currently I
am ending up with broken headers on the web part.
What I do is simply inject jquery through a content editor web part and edit
the my tasks via javascript. Note that this example pulls the jquery from
google api's for being ready to rock on a copy/paste's notice, but you may
want to upload a copy to your PWA and use it from there.
Oh, and I take no responsibility for anything breaking, of course...
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"
type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("#TaskPart_Grid_Div").removeAttr("style");
});
</script>