Friday 10 February 2012

Input mask on textbox in SharePoint list form

Yesterday on LinkedIn I saw one discussion where one of group member asked a query about how to create Input mask on text box in SharePoint List form.

While searching on internet I found this post. In this post Author opened the new form in SharePoint designer, added custom new form and then added jQuery code on page.

But what if I do not have SharePoint designer.

So instead opening page in SharePoint designer, I added CEWP on NewForm.aspx

And then I did some changes in original code, Instead of custom style I used Title of the field. And I inserted below code in Source editor of the CEWP.

<script language="javascript" src="http://code.jquery.com/jquery-1.4.2.min.js" type="text/javascript" ></script>
<script language="javascript" src="http://jquery-joshbush.googlecode.com/files/jquery.maskedinput-1.2.2.min.js" type="text/javascript" ></script>
<script language="javascript" type="text/javascript">

jQuery(function($){
   $("input[title='Phone']").mask("(999) 999-9999? Ext.99999");
});

</script>

And it worked for me. Have a look at below screenshot.








Reference:
http://www.a2zdotnet.com/View.aspx?Id=194 (Original post)
http://digitalbush.com/projects/masked-input-plugin/





Thursday 2 February 2012

Filter document library view by file type

Sometimes we get requirement such that document library should display files with certain file type.
For an example, I want to create view which will display only word documents.

Here is how we need to create our view
  1. Go to Document library settings.
  2. Create view
  3. Name the view: Word documents
  4. Go to Filter and Select "Show items only when following is true"
  5. Choose Name > Contains > .doc (See below screenshot)
  6. Or When Column > Name > Contains > docx (See below screenshot)











When we will select this view it will display word documents.






SharePoint Server 2010: boundaries and limits

This article describes software boundaries and limits of Microsoft SharePoint Server 2010

http://technet.microsoft.com/en-us/library/cc262787.aspx

Software boundaries and limits for SharePoint 2010 & 2013

http://sprider.org/2012/12/14/software-boundaries-and-limits-for-sharepoint-2010-2013/


Related Posts Plugin for WordPress, Blogger...