JSFiddle - React, Tailwind, and code Playground

Test Models

by NesterOne

HTML

<link rel="stylesheet" href="http://build-master.jaspersoft.com:7780/jrs-pro-feature-nojavascript/themes/default/themes/reset.css" type="text/css" media="screen">
<link rel="stylesheet" href="http://build-master.jaspersoft.com:7780/jrs-pro-feature-nojavascript/themes/default/theme.css" type="text/css" media="screen,print" />
<link rel="stylesheet" href="http://build-master.jaspersoft.com:7780/jrs-pro-feature-nojavascript/themes/default/pages.css" type="text/css" media="screen,print" />
<link rel="stylesheet" href="http://build-master.jaspersoft.com:7780/jrs-pro-feature-nojavascript/themes/default/containers.css" type="text/css" media="screen,print" />
<link rel="stylesheet" href="http://build-master.jaspersoft.com:7780/jrs-pro-feature-nojavascript/themes/default/buttons.css" type="text/css" media="screen,print" />
<link rel="stylesheet" href="http://build-master.jaspersoft.com:7780/jrs-pro-feature-nojavascript/themes/default/lists.css" type="text/css" media="screen,print" />
<link rel="stylesheet" href="http://build-master.jaspersoft.com:7780/jrs-pro-feature-nojavascript/themes/default/controls.css" type="text/css" media="screen,print" />
<link rel="stylesheet" href="http://build-master.jaspersoft.com:7780/jrs-pro-feature-nojavascript/themes/default/dataDisplays.css" type="text/css" media="screen,print" />
<link rel="stylesheet" href="http://build-master.jaspersoft.com:7780/jrs-pro-feature-nojavascript/themes/default/pageSpecific.css" type="text/css" media="screen,print" />
<link rel="stylesheet" href="http://build-master.jaspersoft.com:7780/jrs-pro-feature-nojavascript/themes/default/dialogSpecific.css" type="text/css" media="screen,print" />
<link rel="stylesheet" href="http://build-master.jaspersoft.com:7780/jrs-pro-feature-nojavascript/themes/default/forPrint.css" type="text/css" media="print" />

<link rel="stylesheet" href="http://build-master.jaspersoft.com:7780/jrs-pro-feature-nojavascript/themes/default/overrides_custom.css" type="text/css"...

JavaScript

var bi = jasper({
        url: "http://build-master.jaspersoft.com:7280/jrs-pro-feature-amber-dashboard-integration",
        scripts: "scripts"
    });

bi(["common/component/dialog/Dialog"], function (Dialog) {
        var dialog = new Dialog({
             buttons: [ { label: "Save", action: "save", primary: true } ],
             title: "Save Dialog",
             resizable: true,
             content: "some content here"
        });
    
        dialog.open();
});