Announcement

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

  • Isomorphic
    replied
    We can't reproduce this problem on Firefox 50.1.0 on either Windows or MacOSX, on the latest 9.1 or on various other versions.

    Our best guess at this point is that you've installed an extension which is interfering with the normal operation of the browser.

    Leave a comment:


  • shresthg_des
    replied
    Hi,

    I have just reproduced it in the latest patched version of SmartClient Feature Explorer 9.1. I am using Firefox version 50.1.0 (up-to-date). I also use <!DOCTYPE html>. I have provided a screenshot for clarification.

    Leave a comment:


  • Isomorphic
    replied
    We're not reproducing clipping in Firefox - it looks the same as other browsers.

    Make sure you have a DOCTYPE for your page (see FAQ).

    Please test with the latest patched version and a recent version of Firefox, and if you can still reproduce the problem, let us know the exact versions involved (including the OS) and post a screenshot of how it renders for you.

    Leave a comment:


  • shresthg_des
    replied
    Any news on this?

    Leave a comment:


  • shresthg_des
    replied
    How is the investigation coming along?

    Leave a comment:


  • shresthg_des
    started a topic DynamicForm Clipped in Firefox browser

    DynamicForm Clipped in Firefox browser

    SmartClient Version: v9.1p_2016-04-15/Pro Development Only (built 2016-04-15)
    Firefox version 49.0.2

    The DynamicForm components in the HLayout are clipped only in the Firefox browser because internally, the overflow is set to hidden by SmartClient. The SpinnerItem in the DynamicForm is cut off. If I call reflowNow on the HLayout, the HLayout would resize to fit all the DynamicForms contents. I would set this by calling reflowNow on the HLayout's resized function. Below I have the code with the affected scenario (does not call reflowNow). Is there a better way to fix this issue? I want the HLayout to show all of the DynamicForm's contents.

    Code:
    isc.Canvas.create({
        width: "100%",
        height: "100%",
        backgroundColor: "green",
        children: [
            isc.HLayout.create({
                top: 10,
                left: 10,
                members: [
                    isc.DynamicForm.create({
                        backgroundColor: 'blue',
                        fields: [{
                                title: 'hello world',
                                wrapTitle: false,
                                editorType: "SpinnerItem"
                            }
    
                        ]
                    }),
                    isc.DynamicForm.create({
                        backgroundColor: 'red',
                        fields: [
    
                            {
                                title: 'second title',
                                wrapTitle: false,
                                editorType: "SpinnerItem"
                            }
                        ]
                    })
                ]
            })
    
        ]
    
    });
Working...
X