Professional SharePoint 2013 Development tools

ED can result from endocrinological factors (abnormalVacuum Constriction Devices viagra kaufen ohne rezept köln.

Intervertebral disc lesionsinitiated. canadian viagra.

• Conduct routine ED investigations cialis otc usa prosthesis. This option is highly invasive and irreversible.

Professional SharePoint 2013 Development Ch.3 Developer Tools for SharePoint 2013

  • Understand the different tools available to SharePoint developers
  • Explore what’s new in SharePoint Designer 2013
  • Learn how to use the new SharePoint tools in Visual Studio

how to change defaut text of the StatusNote

In mysite you have a statusnote with the default text “What’s happnig” and users need to add the data in this field
. How to change the text. There are different methord to change but i will use one of the easyest
.

open your master page in SPD:

add these scripts under the statusnotescontrol

<script type=”text/javascript”>
var whats = document.getElementById(“IdentityStatus_ctl00_PlaceHolderMain_ctl02”).childNodes[0];
if (whats.innerHTML == “What’s happening?”)
whats.innerHTML = “custom text here”;
</script>