Steps to make this change on only one page: Open Notepad and paste in the JavaScript from below Save the Notepad file with a name like “MoveAddNewItem.html” Upload this Notepad file to a library such as “Site Assets”, “Site Files”…
SharePoint And JQuery handy scripts and tools
Be found on those create topics Jquery for everyone Hope you enjoy them Entries in this series: JQuery for Everyone: Accordion Left Nav JQuery for Everyone: Print (Any) Web Part JQuery for Everyone: HTML Calculated Column JQuery for Everyone: Dressing-up…
Disable SharePoint People Picker Control in Custom Form/OOTB forms using JQuery
Use JQuery and Javascript to Disable People Picker Control in SharePoint <script type=”text/javascript”> $(document).ready(function() { var columnName = ‘Name’; var searchText = RegExp(“FieldName=\”” + columnName + “\””, “gi”); $(“td.ms-formbody”).each(function() { if(searchText.test($(this).html())) { …
Enable / Diable controls in Sharepoint Newform.aspx or Editform.aspx or where ever inside sharepoint
This is pretty easiery way for you to enable and disable controls in sharepoint lists pages or where ever you need it. better off is tat to find the ID of the control using the view source and just execute…
Get Default Logged User Name in SharePoint People Picker
Hi Blokes, I have been seeing that loads of people are looking out for an easier way to get the default logged in user name in sharepoint people picker. so here you go i got some thing for you Just…
My favorite jQuery plugins for use with ASP.NET
One of jQuery’s greatest strengths is its thriving plugin ecosystem. Hundreds of plugins are available at plugins.jquery.com alone, with even more hosted on author sites. If you think of a feature, chances are there’s a jQuery plugin to implement it in just…
Ajax Frameworks,JavaScript Libraries and Toolkit Tutorials
AJAX Client-Server Communication Tutorials Alternate Ajax Techniques, Part 1 – This tutorial tackles other Ajax techniques aside from XMLHttp as the means to describe the client-server communication. Dynamic HTML and XML: The XMLHttpRequest Object – This tutorial tackles the steps of retrieving and submitting…
JavaScript Frameworks
Am consolidating the Javascript frameworks together for an easier review.. Njoy developement jQuery URL: http://www.jquery.com/ Hosted at Google: Yes jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web…