diff --git a/Samples/UINamespace-sandboxed/uiNamespace.html b/Samples/UINamespace-sandboxed/uiNamespace.html index 37240347..0a9dcc2a 100644 --- a/Samples/UINamespace-sandboxed/uiNamespace.html +++ b/Samples/UINamespace-sandboxed/uiNamespace.html @@ -29,6 +29,27 @@ Configure extension to proceed.

+
+
Dialog Style
+
+ + +
+
+ + +
+
+ + +
+
diff --git a/Samples/UINamespace-sandboxed/uiNamespace.js b/Samples/UINamespace-sandboxed/uiNamespace.js index c35ffe1c..dae4e6bc 100644 --- a/Samples/UINamespace-sandboxed/uiNamespace.js +++ b/Samples/UINamespace-sandboxed/uiNamespace.js @@ -39,6 +39,19 @@ // to be updated if the extension is deployed to a new location. const popupUrl = 'uiNamespaceDialog.html'; + // This checks for the selected dialog style in the radio form. + let dialogStyle; + const dialogStyleOptions = document.getElementsByName('dialogStyleRadio'); + if (dialogStyleOptions[0].checked) { + dialogStyle = tableau.DialogStyle.Modal; + } + else if (dialogStyleOptions[1].checked) { + dialogStyle = tableau.DialogStyle.Modeless; + } + else { + dialogStyle = tableau.DialogStyle.Window; + } + /** * This is the API call that actually displays the popup extension to the user. The * popup is always a modal dialog. The only required parameter is the URL of the popup, @@ -51,7 +64,7 @@ * default interval of refresh. */ tableau.extensions.ui - .displayDialogAsync(popupUrl, defaultIntervalInMin, { height: 500, width: 500 }) + .displayDialogAsync(popupUrl, defaultIntervalInMin, { height: 500, width: 500, dialogStyle }) .then((closePayload) => { // The promise is resolved when the dialog has been expectedly closed, meaning that // the popup extension has called tableau.extensions.ui.closeDialog. diff --git a/Samples/UINamespace/uiNamespace.html b/Samples/UINamespace/uiNamespace.html index 8dddd423..8fa6e943 100644 --- a/Samples/UINamespace/uiNamespace.html +++ b/Samples/UINamespace/uiNamespace.html @@ -10,8 +10,8 @@ - - + + @@ -29,6 +29,27 @@ Configure extension to proceed.

+
+
Dialog Style
+
+ + +
+
+ + +
+
+ + +
+
diff --git a/Samples/UINamespace/uiNamespace.js b/Samples/UINamespace/uiNamespace.js index 52263433..c0f692bc 100644 --- a/Samples/UINamespace/uiNamespace.js +++ b/Samples/UINamespace/uiNamespace.js @@ -40,6 +40,19 @@ // to be updated if the extension is deployed to a new location. const popupUrl = `${window.location.origin}/Samples/UINamespace/uiNamespaceDialog.html`; + // This checks for the selected dialog style in the radio form. + let dialogStyle; + const dialogStyleOptions = document.getElementsByName('dialogStyleRadio'); + if (dialogStyleOptions[0].checked) { + dialogStyle = tableau.DialogStyle.Modal; + } + else if (dialogStyleOptions[1].checked) { + dialogStyle = tableau.DialogStyle.Modeless; + } + else { + dialogStyle = tableau.DialogStyle.Window; + } + /** * This is the API call that actually displays the popup extension to the user. The * popup is always a modal dialog. The only required parameter is the URL of the popup, @@ -52,7 +65,7 @@ * default interval of refresh. */ tableau.extensions.ui - .displayDialogAsync(popupUrl, defaultIntervalInMin, { height: 500, width: 500 }) + .displayDialogAsync(popupUrl, defaultIntervalInMin, { height: 500, width: 500, dialogStyle }) .then((closePayload) => { // The promise is resolved when the dialog has been expectedly closed, meaning that // the popup extension has called tableau.extensions.ui.closeDialog.