Example #1
0
 public static string ShowJavascriptDialog(JSDialog dialog, bool removeOverlay)
 {
     return String.Format("showDialog({0}, {1})", dialog.ToString(), removeOverlay.ToString().ToLowerInvariant());
 }
Example #2
0
 public static string ShowJavascriptDialog(JSDialog dialog, bool removeOverlay)
 {
     return(String.Format("showDialog({0}, {1})", dialog.ToString(), removeOverlay.ToString().ToLowerInvariant()));
 }
Example #3
0
 /// <summary> Creates a method call to createDialog(). Call ExecuteJavascript() with this.</summary>
 public static string ShowJavascriptDialog(JSDialog dialog)
 {
     return ShowJavascriptDialog(dialog, true);
 }
Example #4
0
 /// <summary> Creates a method call to createDialog(). Call ExecuteJavascript() with this.</summary>
 public static string ShowJavascriptDialog(JSDialog dialog)
 {
     return(ShowJavascriptDialog(dialog, true));
 }