If you are looking for a small SharePoint 2013 calendar, then Erik has created a nice blog for how to create a small calendar in SharePoint
2013.
As per his instructions I used CEWP with the following CSS –
Note: In SharePoint 2013 you can also use Script Editor web part for adding your CSS as well as JavaScript.
<style>
.ms-acal-item{height: 10px !important;}
.ms-acal-sdiv, .ms-acal-mdiv, .ms-acal-ctrlitem,
.ms-acal-month-weeksel, .ms-acal-title, .ms-acal-summary-itemrow TD DIV{height:
15px !important;}
</style>
Now in SharePoint 2013 it will displays calendar with
full day names.
I end up using jQuery to reduce the day name length. Here is the jQuery script that I used to
reduced the day name length to 3 character.
<script type="text/javascript" src="//ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.2.min.js"></script>
<script language="javascript">
<script language="javascript">
$(document).ready(function()
{
$("table.ms-acal-month > tbody > tr > th.ms-acal-month-top").each(function(){
// get the first 3 chars from day name
$cell = $(this).text().substring(0,3);
$(this).text($cell);
$("table.ms-acal-month > tbody > tr > th.ms-acal-month-top").each(function(){
// get the first 3 chars from day name
$cell = $(this).text().substring(0,3);
$(this).text($cell);
});
});
</script>
});
</script>
Thanks & Have Fun!!
This is awesome thank you for the help. Do you happen to know how to remove / disable the hyperlinks from the calendar views?
ReplyDeleteWhen you select the next/previous month the javascript changes are lost and it displays the full day name. The above works only during initial page load.
ReplyDeleteI've same problem too
DeleteI am also facing the same problem.
Deleteany solution for the problem?
Deletesame problem, does any one got solution for this?
ReplyDeleteJsontextwriter Example in C#, VB.NET
ReplyDeletehttp://expertwebcode.blogspot.com/2019/01/jsontextwriter-example-in-c-vbnet.html
Salesforce Interview Questions with Answers Part 4...
http://expertwebcode.blogspot.com/2018/01/salesforce-interview-questions-with_4.html
android kotlin - AlertDialog setSingleChoiceItems ...
http://expertwebcode.blogspot.com/2018/04/android-kotlin-alertdialog.html
android kotlin - DataBinding visibility example
http://expertwebcode.blogspot.com/2019/01/android-kotlin-databinding-visibility.html
INVALID_QUERY_LOCATOR, Unable to find query cursor...
http://expertwebcode.blogspot.com/2019/05/invalidquerylocator-unable-to-find.html
System.ListException: Before Insert or Upsert list...
http://expertwebcode.blogspot.com/2013/10/systemlistexception-before-insert-or.html
The Version of Visual Studio you are running matte...
http://expertwebcode.blogspot.com/2019/01/the-version-of-visual-studio-you-are.html
android - MaterialCardView example
http://expertwebcode.blogspot.com/2019/01/android-materialcardview-example.html