Saturday, 2 July 2016
SharePoint 2013 & 2010 reference books
Microsoft SharePoint 2013: Designing and Architecting Solutions
Microsoft SharePoint 2013: Planning for Adoption and Governance
Exam Ref 70-331: Core Solutions of Microsoft SharePoint Server 2013
Exam Ref 70-332: Advanced Solutions of Microsoft SharePoint Server 2013
SharePoint 2013 User's Guide, 4th Edition
Developing Business Intelligence Apps for SharePoint
Pro SharePoint 2013 Business Intelligence Solutions
Pro SharePoint Disaster Recovery and High Availability, 2nd Edition
Pro SharePoint 2013 App Development
SharePoint 2013 Branding and User Interface Design
SharePoint 2013 For Dummies
Business Intelligence in Microsoft SharePoint 2013
Pro SharePoint 2013 Administration, 2nd Edition
Microsoft SharePoint 2013 Inside Out
Microsoft SharePoint 2013: Designing and Architecting Solutions
Exploring Microsoft SharePoint 2013
Beginning SharePoint 2013
============================= SharePoint 2010 =============================
Pro SharePoint 2010 Development for Office 365
Practical SharePoint 2010 Branding and Customization
Working with Microsoft FAST Search Server 2010 for SharePoint
Practical SharePoint 2010 Information Architecture
Pro SharePoint with jQuery
Microsoft SharePoint 2010 Business Application Blueprints
SharePoint Server 2010 Administration 24 Hour Trainer
Microsoft SharePoint 2013: Planning for Adoption and Governance
Exam Ref 70-331: Core Solutions of Microsoft SharePoint Server 2013
Exam Ref 70-332: Advanced Solutions of Microsoft SharePoint Server 2013
SharePoint 2013 User's Guide, 4th Edition
Developing Business Intelligence Apps for SharePoint
Pro SharePoint 2013 Business Intelligence Solutions
Pro SharePoint Disaster Recovery and High Availability, 2nd Edition
Pro SharePoint 2013 App Development
SharePoint 2013 Branding and User Interface Design
SharePoint 2013 For Dummies
Business Intelligence in Microsoft SharePoint 2013
Pro SharePoint 2013 Administration, 2nd Edition
Microsoft SharePoint 2013 Inside Out
Microsoft SharePoint 2013: Designing and Architecting Solutions
Exploring Microsoft SharePoint 2013
Beginning SharePoint 2013
============================= SharePoint 2010 =============================
Pro SharePoint 2010 Development for Office 365
Practical SharePoint 2010 Branding and Customization
Working with Microsoft FAST Search Server 2010 for SharePoint
Practical SharePoint 2010 Information Architecture
Pro SharePoint with jQuery
Microsoft SharePoint 2010 Business Application Blueprints
SharePoint Server 2010 Administration 24 Hour Trainer
Saturday, 12 April 2014
SharePoint number
column should accept only numbers
Solution:
<script type="text/javascript">
$(document).ready(function () {
$('input[Title="ColumnName"]').keydown(function (e) {
var
keyCode = e.which; // Capture the event
//190
is the key code of decimal if you dont want decimals remove this condition
keyCode != 190
if
(keyCode != 8 && keyCode != 9 && keyCode != 13 &&
keyCode != 37 && keyCode != 38 && keyCode != 39 &&
keyCode != 40 && keyCode != 46 && keyCode != 110 &&
keyCode != 190) {
if
(keyCode < 48) {
e.preventDefault();
}
else if (keyCode > 57 && keyCode < 96) {
e.preventDefault();
}
else if (keyCode > 105) {
e.preventDefault();
}
}
});
});
</script>
How to set subsite page as main site home page
In SharePoint it’s easy to set main site homepage from main
site itself.
But today I want to set my main site homepage using my
sub-site webpage.
Solution:
1) After
little bit googling I am getting one of the way, we need to change the
web.config file of SharePoint.
2) To
open web.config go to C:\Inetpub\wwwroot\port_number.
3) Open
web.config file and add following lines of code under system.web tag.
<urlMappings
enabled="true">
<add
url="~/" mappedUrl="/subsite/SitePages/Page.aspx"/>
</urlMappings>
Feel
free to revert in-case of any query...
Product
Applies To:
·
SharePoint
Server 2010
·
SharePoint
Foundation 2010
How to add checkbox for every item in Data Form Webpart
How to add
checkbox for every item in Data Form Web Part
In my one of view I want to use Data Form Web Part as well as
I want to know every item’s ID value. In SharePoint XSLT view checkbox against
every item is by default available but in DFWP is not readily available.
After
little bit googling i am getting following step to check box column in DFWP
1.
In
web part page add your DFWP.
2.
Add
or remove your columns as per requirement.
3.
Click
on design tag from ribbon, add one more column to your view.
4.
Select
your newly added column, click on insert tab from ribbon add checkbox control
from HTML toolbox.
5.
Set
the “value” property of checkbox to use ID column’s value.
Feel
free to revert in-case of any query...
Product
Applies To:
·
SharePoint
Server 2010
·
SharePoint
Foundation 2010
Wednesday, 15 January 2014
SharePoint 2013 e-books list
·
Professional SharePoint
2013 Development
·
Professional SharePoint
2013 Administration
·
Microsoft SharePoint 2013
App Development
·
Beginning SharePoint 2013
·
Microsoft SharePoint 2013
Developer Reference
·
Beginning SharePoint 2013
Development
·
Explore SharePoint 2013
·
Deployment guide for
SharePoint 2013
·
Test Lab Guide: eBook for
SharePoint Server 2013 Intranet and Team Sites
·
SharePoint Server for
Business Intelligence
Friday, 10 January 2014
Set SharePoint form field show, hide or read-only using JavaScript
Sometimes from validation point of view we need
to hide, visible or read only SharePoint List from fields.This blog will give us idea about how to do that
using JavaScript.
· Set SharePoint form field read-only:
<script type
="text/javascript">
function SetReadOnly()
{
var
elements=document.getElementById('ctl00_m_g_adee8cfa_dbff_48bf_b75c_ae50351ebbf7_ff21_ctl00_ctl00_TextField');
elements.readOnly=true;
}
_spBodyOnLoadFunctionNames.push("SetReadOnly()");
</script>
·
Hide SharePoint form field:
$("# ColumnID").hide();
·
Show SharePoint form field:
$("#ColumnID").show();
Remark: Here "ColumnID"
is id for that particular column specify in <tr> tag on SharePoint form
Eg.
<tr id=”ColumnID”>
Example:
·
show and hide SharePoint form field base
on dropdown value change in sharepoint
<script
type="text/javascript">
_spBodyOnLoadFunctionNames.push("ourFunctionName");
function ourFunctionName()
{
$("Select[Title='Type']").change(function () {
var val=$("Select[Title='Type']").val();
if(val=="Pre")
{
$("#Post").hide();
$("#Pre").show();
}
else if(val=="Post")
{
$("#Post").show();
$("#Pre").hide();
}
});
}
</script>
Subscribe to:
Posts (Atom)



