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/


Monday, 23 January 2012

Add Hit Counter on a page using SharePoint Designer 2007

To add hit counter on page
  1. Open the page using SharePoint Designer.
  2. From the Insert menu, select Web Component .
  3. Select the counter style you want from the right screen and click finish.
To reset the hit counter
  1. Double-click the hit counter.
  2. Click to select the Reset counter to check box, and then type a number in the box.
  3. Click OK.

Thursday, 12 January 2012

Lockdown feature functionality for MOSS

What is the lockdown feature? The simple answer is that it keeps anonymous users from being able to see things they shouldn't, like list views, etc.

For more technical information see:
http://blogs.msdn.com/b/ecm/archive/2007/05/12/anonymous-users-forms-pages-and-the-lockdown-feature.aspx

Tuesday, 10 January 2012

SharePoint 2010 Virtual Labs

The Microsoft Developer Network (MSDN) and TechNet have a whole bunch of virtual labs you can use right from your browser.

For more information on SharePoint 2010 virtual labs visit MSDN SharePoint Server Virtual Labs and TechNet Virtual Labs for SharePoint Products and Technologies.


Monday, 9 January 2012

To display Item ID in display and edit forms of SharePoint list items

In some cases, we may need to show ID field in display or edit form of a SharePoint list item.

There are some simple steps given on "Path to SharePoint" to achieve this http://blog.pathtosharepoint.com/2009/01/18/item-id-in-display-and-edit-forms/

Cheers!!!


Related Posts Plugin for WordPress, Blogger...