TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
SharePoint Progress Alert Code
Sagar Pardeshi
Oct 06
2014
Code
1.2
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
<script type=
"text/ecmascript"
language=
"ecmascript"
>
var
statusId =
''
;
var
notifyId =
''
;
function
AddNotification()
{
notifyId = SP.UI.Notify.addNotification(
"Hello World!"
,
true
);
}
function
RemoveNotification()
{
SP.UI.Notify.removeNotification(notifyId);
notifyId =
''
;
}
function
AddStatus()
{
statusId = SP.UI.Status.addStatus(
"Status good!"
);
SP.UI.Status.setStatusPriColor(statusId,
'Blue'
);
}
function
RemoveLastStatus()
{
SP.UI.Status.removeStatus(statusId);
statusId =
''
;
}
function
RemoveAllStatus()
{
SP.UI.Status.removeAllStatus(
true
);
}
</script>
<
input
id
=
"Button1"
type
=
"button"
value
=
"Add Notification"
onclick
=
"AddNotification()"
/>
<
input
id
=
"Button2"
type
=
"button"
value
=
"Remove Notification"
onclick
=
"RemoveNotification()"
/>
<
p
>
</
p
>
<
input
id
=
"Button3"
type
=
"button"
value
=
"Add Status"
onclick
=
"AddStatus()"
/>
<
input
id
=
"Button4"
type
=
"button"
value
=
"Remove Last Status"
onclick
=
"RemoveLastStatus()"
/>
<
input
id
=
"Button5"
type
=
"button"
value
=
"Remove All Status"
onclick
=
"RemoveAllStatus()"
/>
SharePoin
client object model in SharePoint
Progress Code in SharePoint