We use Smart Client 10.1 Power Edition with Google Chrome and we are looking for reporting tool approximately three weeks and we about to decide to buy Stimulsoft Report.JS reporting tool. But this report tool has some problems with SmartClient 10.1 Widgets.
We use two framework at the same time, reporting tool running correctly but, smartclient widgets not because of generating conflits.
We generating tiny sample with isc.IButton but we also have same problem other widgets (Tab,ListGrid etc.)
Isomorphic SmartClient UI components can’t run with StimulSoft Report tool link:
https://s3.amazonaws.com/ozhost/Repo...litSample.html
Sample Code:
We use two framework at the same time, reporting tool running correctly but, smartclient widgets not because of generating conflits.
We generating tiny sample with isc.IButton but we also have same problem other widgets (Tab,ListGrid etc.)
Isomorphic SmartClient UI components can’t run with StimulSoft Report tool link:
https://s3.amazonaws.com/ozhost/Repo...litSample.html
Sample Code:
Code:
<!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8" /> <script src="https://www.smartclient.com/v/MAIN_2016-03-12_1457827266_alex_apex/isomorphic/system/modules/ISC_Core.js" type="text/javascript"></script> <script src="https://www.smartclient.com/v/MAIN_2016-03-12_1457827266_alex_apex/isomorphic/system/modules/ISC_Foundation.js" type="text/javascript"></script> <script src="https://www.smartclient.com/v/MAIN_2016-03-12_1457827266_alex_apex/isomorphic/system/modules/ISC_Forms.js" type="text/javascript"></script> <script src="https://www.smartclient.com/v/MAIN_2016-03-12_1457827266_alex_apex/isomorphic/skins/EnterpriseBlue/load_skin.js" type="text/javascript"></script> <!-- Report designer Office2013 White Blue style --> <!-- Report designer Office2013 White Blue style --> <link href="../css/stimulsoft.designer.office2013.white.blue.css" rel="stylesheet"> <link href="../css/stimulsoft.viewer.office2013.css" rel="stylesheet"> <script src="../scripts/stimulsoft.reports.js" type="text/javascript"></script> <script src="../scripts/stimulsoft.viewer.js" type="text/javascript"></script> <script src="../scripts/stimulsoft.designer.js" type="text/javascript"></script> </head> <body> <h1>Button click not running (but runing without designer) </h1> <br /> <br /> <script type="text/javascript"> isc.IButton.create({ id:"helloButton", title: "Generate Message Box with 'Isomprohic Smartclient button UI'", top:75, width:"350", click: function () { alert("Hello World") } }) // Create the report designer with default options and show it in this place var designer = new Stimulsoft.Designer.StiDesigner(); [B]//if this line commented out isc.IButton running correctly[/B] </script> </body> </html>
Comment