|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.smartgwt.client.util.SC
public class SC
Field Summary | |
---|---|
static java.lang.String |
REF
|
Constructor Summary | |
---|---|
SC()
|
Method Summary | |
---|---|
static void |
ask(java.lang.String message,
BooleanCallback callback)
Show a modal dialog with a message, icon, and "Yes" and "No" buttons. |
static void |
ask(java.lang.String title,
java.lang.String message,
BooleanCallback callback)
Show a modal dialog with a message, icon, and "Yes" and "No" buttons. |
static void |
ask(java.lang.String title,
java.lang.String message,
BooleanCallback callback,
Dialog dialogProperties)
Show a modal dialog with a message, icon, and "Yes" and "No" buttons. |
static void |
askforValue(java.lang.String title,
java.lang.String message,
java.lang.String defaultValue,
ValueCallback callback,
Dialog dialogProperties)
Show a modal dialog with a text entry box, asking the user to enter a value. |
static void |
askforValue(java.lang.String title,
java.lang.String message,
ValueCallback callback)
Show a modal dialog with a text entry box, asking the user to enter a value. |
static void |
askforValue(java.lang.String message,
ValueCallback callback)
Show a modal dialog with a text entry box, asking the user to enter a value. |
static void |
clearPrompt()
Clear the modal prompt being shown to the user. |
static void |
confirm(java.lang.String message,
BooleanCallback callback)
Show a modal dialog with a message, icon, and "OK" and "Cancel" buttons. |
static void |
confirm(java.lang.String title,
java.lang.String message,
BooleanCallback callback)
Show a modal dialog with a message, icon, and "OK" and "Cancel" buttons. |
static void |
confirm(java.lang.String title,
java.lang.String message,
BooleanCallback callback,
Dialog dialogProperties)
Show a modal dialog with a message, icon, and "OK" and "Cancel" buttons. |
static void |
debugger()
|
static void |
disableFirebug()
Disable firebug. |
static java.lang.String |
generateID()
|
static java.lang.String |
getHome()
|
static boolean |
hasFirebug()
Return true if Firebug is enabled. |
static boolean |
isIE()
|
static void |
logEcho(com.google.gwt.core.client.JavaScriptObject value,
java.lang.String message)
Logs the echoed object as a warning, prefixed with an optional message. |
static void |
logEchoAll(com.google.gwt.core.client.JavaScriptObject value,
java.lang.String message)
Logs the echoed object as a warning, prefixed with an optional message. |
static void |
logWarn(java.lang.String message)
Log a warning. |
static void |
logWarn(java.lang.String message,
java.lang.String category)
Log a warning. |
static void |
say(java.lang.String message)
Show a modal dialog with a message, icon, and "OK" button. |
static void |
say(java.lang.String message,
BooleanCallback callback)
Show a modal dialog with a message, icon, and "OK" button. |
static void |
say(java.lang.String title,
java.lang.String message)
Show a modal dialog with a message, icon, and "OK" button. |
static void |
say(java.lang.String title,
java.lang.String message,
BooleanCallback callback)
Show a modal dialog with a message, icon, and "OK" button. |
static void |
showConsole()
|
static void |
showPrompt(java.lang.String message)
Show a modal prompt to the user. |
static void |
showPrompt(java.lang.String title,
java.lang.String message)
Show a modal prompt to the user. |
static void |
showPrompt(java.lang.String title,
java.lang.String message,
Dialog dialogProperties)
Show a modal prompt to the user. |
static void |
warn(java.lang.String message,
BooleanCallback callback)
Show a modal dialog with a message, icon, and "OK" button. |
static void |
warn(java.lang.String title,
java.lang.String message,
BooleanCallback callback,
Dialog dialogProperties)
Show a modal dialog with a message, icon, and "OK" button. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String REF
Constructor Detail |
---|
public SC()
Method Detail |
---|
public static java.lang.String generateID()
public static java.lang.String getHome()
public static void debugger()
public static void showConsole()
public static boolean hasFirebug()
public static boolean isIE()
public static void disableFirebug()
public static void say(java.lang.String message)
message
- the messagepublic static void say(java.lang.String title, java.lang.String message)
title
- the title of the message boxmessage
- the messagepublic static void say(java.lang.String message, BooleanCallback callback)
message
- the messagecallback
- the callback to fire when the user dismisses the dialog.public static void say(java.lang.String title, java.lang.String message, BooleanCallback callback)
title
- the title of the message boxmessage
- the messagecallback
- the callback to fire when the user dismisses the dialog.public static void ask(java.lang.String message, BooleanCallback callback)
message
- the messagecallback
- the callback to fire when the user dismisses the dialog.public static void ask(java.lang.String title, java.lang.String message, BooleanCallback callback)
title
- the title of the message boxmessage
- the messagecallback
- the callback to fire when the user dismisses the dialog.public static void ask(java.lang.String title, java.lang.String message, BooleanCallback callback, Dialog dialogProperties)
title
- the title of the message boxmessage
- the messagecallback
- the callback to fire when the user dismisses the dialog.public static void askforValue(java.lang.String message, ValueCallback callback)
As with other convenience methods that show Dialogs, such as #warn(String, String, BooleanCallback)
, the dialog is shown
and the function immediately returns. When the user responds, the provided callback is called.
If the user clicks OK, the value typed in is passed to the callback (including the empty string ("") if nothing was entered. If the user clicks cancel, the value passed to the callback is null.
A default value for the text field can be passed via properties.defaultValue
Keyboard focus is automatically placed in the text entry field, and hitting the enter key is the equivalent of pressing OK.
message
- message to displaycallback
- Callback to fire when the user clicks a button to dismiss the dialog. This has the single parameter 'value',
indicating the user entry, or null if cancel was pressed or the window closedpublic static void askforValue(java.lang.String title, java.lang.String message, ValueCallback callback)
As with other convenience methods that show Dialogs, such as #warn(String, String, BooleanCallback)
, the dialog is shown
and the function immediately returns. When the user responds, the provided callback is called.
If the user clicks OK, the value typed in is passed to the callback (including the empty string ("") if nothing was entered. If the user clicks cancel, the value passed to the callback is null.
Keyboard focus is automatically placed in the text entry field, and hitting the enter key is the equivalent of pressing OK.
title
- the title of the dialogmessage
- message to displaycallback
- Callback to fire when the user clicks a button to dismiss the dialog. This has the single parameter 'value',
indicating the user entry, or null if cancel was pressed or the window closedpublic static void askforValue(java.lang.String title, java.lang.String message, java.lang.String defaultValue, ValueCallback callback, Dialog dialogProperties)
As with other convenience methods that show Dialogs, such as #warn(String, String, BooleanCallback)
, the dialog is shown
and the function immediately returns. When the user responds, the provided callback is called.
If the user clicks OK, the value typed in is passed to the callback (including the empty string ("") if nothing was entered. If the user clicks cancel, the value passed to the callback is null.
Keyboard focus is automatically placed in the text entry field, and hitting the enter key is the equivalent of pressing OK.
title
- the title of the dialogmessage
- message to displaydefaultValue
- the default value of the text fieldcallback
- Callback to fire when the user clicks a button to dismiss the dialog. This has the single parameter 'value',
indicating the user entry, or null if cancel was pressed or the window closeddialogProperties
- additional properties of the Dialogpublic static void showPrompt(java.lang.String message)
Note: if this prompt is to be shown to the user during some slow logic, we advise calling this method, then
using DeferredCommand
to kick off the slow logic in a separate thread. This ensures that
the prompt is showing before the lengthy execution begins.
message
- message to displayclearPrompt()
public static void showPrompt(java.lang.String title, java.lang.String message, Dialog dialogProperties)
Note: if this prompt is to be shown to the user during some slow logic, we advise calling this method, then
using DeferredCommand
to kick off the slow logic in a separate thread. This ensures that
the prompt is showing before the lengthy execution begins.
title
- the title of the dialogmessage
- message to displaydialogProperties
- additional properties for the DialogclearPrompt()
public static void showPrompt(java.lang.String title, java.lang.String message)
Note: if this prompt is to be shown to the user during some slow logic, we advise calling this method, then
using DeferredCommand
to kick off the slow logic in a separate thread. This ensures that
the prompt is showing before the lengthy execution begins.
title
- the title of the dialogmessage
- message to displayclearPrompt()
public static void clearPrompt()
public static void confirm(java.lang.String message, BooleanCallback callback)
The callback will receive boolean true for an OK button click, or null for a Cancel click or if the Dialog is dismissed via the close button.
message
- message to displaycallback
- Callback to fire when the user clicks a button to dismiss the dialog.public static void confirm(java.lang.String title, java.lang.String message, BooleanCallback callback)
The callback will receive boolean true for an OK button click, or null for a Cancel click or if the Dialog is dismissed via the close button.
title
- the title of the dialogmessage
- message to displaycallback
- Callback to fire when the user clicks a button to dismiss the dialog.public static void confirm(java.lang.String title, java.lang.String message, BooleanCallback callback, Dialog dialogProperties)
The callback will receive boolean true for an OK button click, or null for a Cancel click or if the Dialog is dismissed via the close button.
title
- the title of the dialogmessage
- message to displaycallback
- Callback to fire when the user clicks a button to dismiss the dialog.dialogProperties
- additional properties for the Dialogpublic static void warn(java.lang.String message, BooleanCallback callback)
The callback will receive boolean true for an OK button click, or null if the Dialog is dismissed via the close button.
message
- the messagecallback
- Optional Callback to fire when the user dismisses the dialog.public static void warn(java.lang.String title, java.lang.String message, BooleanCallback callback, Dialog dialogProperties)
The callback will receive boolean true for an OK button click, or null if the Dialog is dismissed via the close button.
message
- the messagecallback
- Optional Callback to fire when the user dismisses the dialog.dialogProperties
- additional properties for the Dialogpublic static void logWarn(java.lang.String message)
message
- the message to logpublic static void logWarn(java.lang.String message, java.lang.String category)
message
- the message to logcategory
- category to log in, defaults to "Log"public static void logEcho(com.google.gwt.core.client.JavaScriptObject value, java.lang.String message)
value
- object to echomessage
- the message to logpublic static void logEchoAll(com.google.gwt.core.client.JavaScriptObject value, java.lang.String message)
value
- object to echomessage
- the message to log
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |