[CLOSED] Fieldset expand/collapse is NOT working in Safari v11

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1

    [CLOSED] Fieldset expand/collapse is NOT working in Safari v11

    Hi,

    Have you identified this? Fieldset control is not working after the recent MAC OS, Sierra + Safari v11 update. You can check this in your 2.5 example site. Open this page( https://examples2.ext.net/#/Form/Groups/Basic/) in Safari (v11) browser and try to expand/collapse fieldsets to replicate the issue.

    We use Ext.Net 2.5 version on our website. We will be thankful to you if you provide a quick fix for this issue.
    Last edited by fabricio.murta; Feb 23, 2018 at 5:01 PM. Reason: no feedback from the user in 7+ days
  2. #2
    Hello @iansriley!

    Rewire the event with:

    App.MyFieldSet.legend.el.on('click', function() { App.MyFieldSet.toggle(); });
    You may want to match against safari 11 by querying the user agent string returned by Ext.userAgent.

    Ext.NET 2 does not support detecting safari 11 specificly otherwise (via Ext.isSafari).

    I hope this helps.

    EDIT: maybe a better way to fix that would be to have this CSS rule bound to every page using fieldset (or program some code to apply it whenever the browser is Safari 11):

    .x-fieldset {
      overflow: visible;
    }
    credits for the above override: Post #7 on Sencha Thread: ExtJS 6.5.0 Fieldset legend are not visible in Safari 11
    Last edited by fabricio.murta; Sep 29, 2017 at 6:02 AM. Reason: Add info about override provided by Sencha community.
  3. #3
    Hello @iansriley!

    It's been a while since we replied your inquiry here, and still no feedback from you. Did it help at all? Do you still need assistance in this topic?

    We may mark this thread as closed if you don't provide a feedback in 7+ days from now but you will still be able to post a follow-up even after marked as closed.
    Fabrício Murta
    Developer & Support Expert

Similar Threads

  1. Replies: 12
    Last Post: Aug 31, 2013, 6:26 PM
  2. [CLOSED] Fieldset collapse codebehind
    By CarWise in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Aug 03, 2012, 8:23 AM
  3. Replies: 1
    Last Post: Mar 07, 2012, 8:39 PM
  4. Replies: 3
    Last Post: Aug 11, 2011, 11:07 AM
  5. Replies: 4
    Last Post: Aug 19, 2009, 2:01 PM

Tags for this Thread

Posting Permissions