jQWidgets Forums

jQuery UI Widgets Forums Editors DateTimeInput control on jquery-ui dialog form

This topic contains 1 reply, has 2 voices, and was last updated by  ivailo 10 years ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • control on jquery-ui dialog form #71345

    omargarro
    Participant

    Hi, I have this application combining jqxWidget and Jquery-UI

    There’s a CRUD option where a grid is presented on screen and a “New button” opens a JQuery UI dialog form (modal) and jqxDateTimeInput object is placed over there to select some date info.
    Most of the users have no problem at all. But some of them (very few) whenever they press jqxDateTimeInput to popup the control, it pops-up BEHIND the modal form .

    the code:

    <style>
    .ui-dialog { z-index: 9999 !important; }
    input {padding:5px;}
    #dlg_contrato div {margin-bottom:10px;}
    </style>
    <div id=”dlg_cont” title=”CONTRACT FORM” style=”font-size: 13px; font-family: Verdana;”>
    <form id=”frmCont” >
    <label>DetaA</label><br/>
    <div><input type=”text” name=”detalleContrato” id=”detalleContrato” class=”text ui-widget-content ui-corner-all” style=”width:400px;” /></div>

    <label>From date:</label>
    <div id=”vigenciaContrato” style=”z-index:99999;”></div>
    </form>
    </div>

    <script type=”text/javascript”>
    $(document).ready(function () {
    $(“#vigenciaContrato”).jqxDateTimeInput({
    popupZIndex: 9999999,
    width: ‘125px’,
    height: ’25px’,
    theme: ‘energyblue’,
    culture: ‘es-ES’,
    formatString: ‘dd-MM-yyyy’, showFooter: true, todayString: ‘Hoy’, clearString: ‘Limpiar’
    });
    });
    </script>

    control on jquery-ui dialog form #71380

    ivailo
    Participant

    Hi omargarro,

    We cannot offer you assistance for third party controls.
    Also recommend you to use jqxWindow as an alternative. It’s tested combination.
    jqxWindow’s functionality can be seen here.

    Best Regards,
    Ivailo Ivanov

    jQWidgets Team
    http://www.jqwidgets.com

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

You must be logged in to reply to this topic.