Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Smart Client 10.1 conflict with Stimulsoft Report.JS reporting tool

    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:

    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>





    #2
    It seems clear that this reporting tool breaks our widgets, but we're not sure why you'd report this to us - this looks like a bug to report to Stimulsoft.

    In case the problem is that Stimulsoft just blindly clobbers global event handlers, you could try loading SmartClient after loading Stimulsoft, since SmartClient is careful to avoid interfering with other libraries and it seems clear that Stimulsoft is not :(

    If you need help beyond this, options are:

    1. Demonstrate that what is going wrong here is due to a bug in SmartClient, which can be reproduced without Stimulsoft loaded (very unlikely)

    2. Purchase some Consulting time if you would just like to get someone to work on an hourly basis on integrating Stimulsoft and SmartClient without worrying about whether a given problem is a bug or not (Support is here to help with bugs)

    Comment

    Working...
    X