Announcement

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

    Confirm dialog optical Problem

    Hi,

    with SmartClient_v82p_2012-08-27 a dialog text that is longer than one line leads to cutting the buttons in Firefox and cutting the whole dialog in Chrome.
    Code:
    isc.confirm("Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", function (value) {});
    Please see the enclosed screenthot.

    Greetings Thomas
    Attached Files

    #2
    We're not reproducing this on our end. Can you verify:
    - How are you launching this 'confirm' dialog? From the Feature Explorer or from a standalone page? If a standalone page, can you show us the complete HTML for the page.
    - What version of FF / Chrome and what Operating system are you using
    - What skin are you loading?
    - Can you check for any browser settings which may be impacting display? For example, do you have a zoom level set? Does does the problem go away if you clear your browser cache?

    Thanks
    Isomorphic Software

    Comment


      #3
      The reason is the HTML5 doctype you suggested here:
      http://forums.smartclient.com/showthread.php?t=23215

      The following code with HTML 5 doctype shows the optical problem:
      Code:
      <!DOCTYPE html>
      <HTML><HEAD>
      <TITLE></TITLE>
      <SCRIPT>var isomorphicDir="/isomorphic/";</SCRIPT>
      <SCRIPT SRC=/isomorphic/system/modules/ISC_Core.js></SCRIPT>
      <SCRIPT SRC=/isomorphic/system/modules/ISC_Foundation.js></SCRIPT>
      <SCRIPT SRC=/isomorphic/system/modules/ISC_Containers.js></SCRIPT>
      <SCRIPT SRC=/isomorphic/system/modules/ISC_Grids.js></SCRIPT>
      <SCRIPT SRC=/isomorphic/system/modules/ISC_Forms.js></SCRIPT>
      <SCRIPT SRC=/isomorphic/system/modules/ISC_DataBinding.js></SCRIPT>
      <SCRIPT SRC=/isomorphic/system/modules/ISC_RichTextEditor.js></SCRIPT>
      <SCRIPT SRC=/isomorphic/skins/Enterprise/load_skin.js></SCRIPT>
      
      </HEAD><BODY>
      <SCRIPT>
      isc.confirm("Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", function (value) {});
      </SCRIPT>
      </BODY></HTML>

      Comment


        #4
        p.s. with the HTML5 doctype enabled also the error text icons of date items have a wrong alignment. Please see the enclose screenshot.
        Attached Files

        Comment


          #5
          We see and have resolved the issue with the wrapping error icon.
          This will show up in the next nightly build (dated Aug 31 or greater).

          We are still having trouble reproducing the issue with truncated buttons on the confirm dialog in HTML5 mode in Chrome.
          Once again can we verify:
          - what version of Chrome are you seeing this on.
          - what operating system
          - which skin
          - have you tried clearing browser cache and refreshing

          Thanks
          Isomorphic Software

          Comment

          Working...
          X