jQuery UI Widgets Forums Angular input bug

This topic contains 1 reply, has 2 voices, and was last updated by  admin 4 years, 1 month ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    input bug Posts
  • input bug #112611

    EdenGrafix
    Participant

    Hello
    I have an example https://stackblitz.com/edit/angular-ivy-bdtwnn?file=src%2Fapp%2Fapp.component.ts
    where I set the source of an input on ngAfterViewInit using jqwidgets.createInstance

    This works fine and I get auto completion.
    Once I put it in an editDialogCreate function it doesn’t work

    Can someone please tell me why that is?

    To build a editDialog window from scratch is far too time consuming; building the functionality for recurrence alone would take some time and that’s what these components are supposed to save?

    input bug #112632

    admin
    Keymaster

    Hi EdenGrafix,

    The reason is that jqxInput’s popup z-index is 1000. The Scheduler’s dialog z-index is 1001. You can solve this by adding

    .jqx-input-popup {
        z-index: 2000;
    }

    Hope this helps.

    Best regards,
    Peter Stoev

    jQWidgets Team
    https://www.jqwidgets.com/

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.