JSHelperStatusMsgJS Method (String, StatusMsgOptions, Int32) |
Generates javascript for calling the javascript StatusMsg() function which provides
a message and optional animated icon showing that processing is being performed.
The StatusMsg() function is appropriate for use on a post. At this time it is not
appropriate for use with AJAX calls because there is currently no mechanism for
clearing the status indicator. The indicator goes away when the new page replaces
the old.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static string StatusMsgJS(
string message,
StatusMsgOptions options,
int delayInMilliseconds
)
Public Shared Function StatusMsgJS (
message As String,
options As StatusMsgOptions,
delayInMilliseconds As Integer
) As String
Parameters
- message
- Type: SystemString
The message to display, often ending with ellipses. - options
- Type: NetQuarryStatusMsgOptions
Options controlling how the status is to be displayed. - delayInMilliseconds
- Type: SystemInt32
Do not present the status message until after the specified delay (in milli-seconds).
Return Value
Type:
StringThe javascript function call string.
See Also