In this below script, Convert UTC Date Time to local/EST Hours
In this article , we will use default java-script action
Type 1:
var localTime = new Date();
var localKolkata = moment.tz(localTime, "Asia/Kolkata").format("hh:mm:ss");
Javascript script provide date and time format.
Type 2:
function getLocalTime(i)...
Showing posts with label javascript:;. Show all posts
Showing posts with label javascript:;. Show all posts
Friday, July 24, 2020
Tuesday, April 26, 2016
26
Apr
In this below script, Item Adding / Item Added Event Receiver
Ways to retrieve data are:
Properties.ListItem[«FieldName »]
Properties.AfterProperties[«FieldName »]
Properties.BeforeProperties[«FieldName »]
we must add the synchronization parameter
to our xml definition.
<Receiver>
<Name>EventReceiver1ItemAdded</Name>
<Type>ItemAdded</Type>
<Assembly>$SharePoint.Project.AssemblyFullName$</Assembly>
<Class>TutoTaxonomy.EventReceiver1.EventReceiver1</Class>
<SequenceNumber>10000</SequenceNumber>
<Synchronization>Synchronous</Synchronization>
</Receiver>
In...
Saturday, April 9, 2016
09
Apr
In this below script, Print css using Window.print
<style type="text/css" media="print">
@page {
size: auto; /* auto is the initial value */
margin: 0; /* this affects the margin in the printer settings */
}
</style>
@page :left {
margin-left: 4cm;
margin-right: 3cm;
}
@page :right {
...
In this below script, Freeze header in SharePoint List 2013
The stickyHeaders widget as part of the Sharepoint List .
_spBodyOnLoadFunctionNames.push("stickyHeaders");
function stickyHeaders() {//-----------------------------------------------------------------------------------------------------------------------------------------------...
Thursday, March 31, 2016
In this below script, Turn on Line Numbers In Visual Studio
Line numbers are not on by default. Tools -> Options -> Text Editor -> All Languages -> General -> Display and check Line numbers: ...
Wednesday, March 30, 2016
In this below script, Configuring Auditing in SharePoint 2010
Go to site Settings
select Site collection Administration
Choose Audit log Reports
Delete Deletion
Please the save location
I'll save this report to the Shared Documents Library, however in production this is where I create a document library with...
Tuesday, March 29, 2016
29
Mar
GET request
/_api/Web?$select=CustomMasterUrl,MasterUrl
function MastePageChange() {
var clientcontext;
var cweb;
var customMasterURL = '/_catalogs/masterpage/NewMasterPage.master';
clientcontext = new SP.ClientContext.get_current();
cweb =...
29
Mar
Limit the total number of items returned to the specified amount
ClientContext clientContext = new ClientContext("http://hercules");
clientContext.Credentials = new NetworkCredential("Peakfinder", "password@1");
string listName = "Employess", viewName...
29
Mar
In this below script, hange SharePoint list field color using jquery code
$("table.ms-listviewtable > tbody > tr > td:nth-child(columnNumber) > div").filter(function() {
( parseInt( $(this).text() ) > 59 ) ? $(this).css("background-color", "#00FF66") : null
...
29
Mar
In this below script, oCalculating date value based on a column value SP
=IF(A<1/3/2016,A+100,A+50)
Set the column to return date.
...
In this below script, open a calendar item in a modal dialog
function openDialog(pageUrl) {
var options = {
title : "calender",
width : 500,
height : 400,
url : pageUrl
};
SP.SOD.execute('sp.ui.dialog.js', 'SP.UI.ModalDialog.showModalDialog',...
Friday, March 25, 2016
http://jsfiddle.net/BlinkSun/tcVhN/235/
a factory that you can call and a directive, two way: by htmls from variable scope or by extern template, if the template have a css linked in, it must print de style too...
Thursday, March 24, 2016
24
Mar
In this below script, "Pause for" Action - Nintex Workflow
· Email triggered says Workflow Terminated unexpectedly for item. · Error message logged was “Error POC 1” failed to run. · ...
Tuesday, March 22, 2016
22
Mar
In this below script, remove url href values when printing in Chrome using javascript
your printed webpages you will need to use your CSS styles to override it.
Customize the print CSS, and finding that it prints links out with the href value as well as the link.
}@media print {
a[href]:after...
In this below script,STSNavigate in SharePoint
In this article menu item uses createNewDocumentWithRedirect function in core.js file
<asp:content contentplaceholderid="PlaceHolderAdditionalPageHead" runat="server">
<SharePoint:RssLink runat="server"/>
...
22
Mar
In this below script,add custom context menu list in javascript
In this article ,We have create custom Context menu in SharePoint custom list , for single list(i.e. List Library) I have created a custom action for the content type. 1.Open SharePoint Designer. 2. Open SharePoint site 3. Go to that specific...
In this below script,Print css in javascript
I got is adding media="print" property to the CSS references.
/* This CSS removes the header, navigation and other action elements from the print preview */
1.
<style>
@media print{
#suiteBar{display:none;}
...
Monday, March 21, 2016
21
Mar
Add-PSSnapin Microsoft.SharePoint.PowerShell –erroraction SilentlyContinue
$webURL = "http://site1/"
$listName = " Card Test"
$columnName = "Designation 2"
$lookupListName = "Designation Lookup"
$lookupWebURL = "http://site"
RepairListLookupColumns -webURL $webURL -listName $listName -columnName $columnName -lookupListName...
Friday, March 18, 2016
18
Mar
(you will get customizations code personal views,
you will get customizations code workflows
you will get customizations code alerts)
you will get customizations code
you will lost quick links
Sites based off old site templates are not handled
During import, some files are dropped...
Go to Central Administration, Choose Application Management, select Manage web applications .
Select the site you want to enable anonymous access on and click on the Authentication Providers icon.
On the Authentication Providers pop-up window click on the Default zone.
Edit Authentication, Enable anonymous access...