jQWidgets Forums

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: initialising a pop up window initialising a pop up window #17447

    shashi
    Member

    Can u please give the code for init content for the above requirement.

    in reply to: initialising a pop up window initialising a pop up window #17438

    shashi
    Member

    Hi ,

    This is not a modal window. Here it is a window showing as popup. It is not a duplicate post
    Please answer this.

    $(document).ready(function () {
    $('#popupWindow').jqxWindow({
    initContent: function () {
    $("#btnCreateCamp").jqxButton({ height: 40 });
    }
    });
    <div id="popupWindow" style="visibility: hidden">
    <div style="overflow: hidden;">
    <table class ="center" >
    <tr>
    <td>
    <asp:Label ID="lblcmpName" runat="server" Text="Campaign Name : "></asp:Label>
    </td>
    <td>
    <input type="text" id="txtCmpgnName" runat="server" style="border: thin groove #000000; width: 120px; height: 20px;" />
    </td>
    </tr>
    <tr>
    <td>
    <asp:Label ID="lblCampDesc" runat="server" Text="Description : "></asp:Label>
    </td>
    <td>
    <input type="text" id="txtDesc" runat="server" style="border: thin groove #000000; width: 120px; height: 20px;" />
    </td>
    </tr>
    <tr>
    <td colspan="2">
    <input type="button" value="Button" id='btnCreateCamp' runat="server" onserverclick="btnCreateCamp_ServerClick" onclick="return newcamp()" />
    </td>
    </tr>
    <%-- <tr>
    <td>
    <asp:Label ID="lblClonecamp" runat="server" Text="Clone Campaign : "></asp:Label>
    </td>
    <td>
    <div id='ddlCloneCamp'>
    </div>
    </td>
    </tr>
    <tr>
    <td>
    <asp:Label ID="lblMode" runat="server" Text="Save Mode : "></asp:Label>
    </td>
    <td>
    <div id='ddlMode'>
    </div>
    </td>
    </tr>--%>
    </table>
    </div>
    </div>

    shashi
    Member
     $(document).ready(function () {
    var index=document.getElementById("ContentPlaceHolder1_hdnPageTypeStatus").value;
    $("#ddlpagetype").jqxDropDownList({ source: dataAdapter, displayMember: "Page_Type", valueMember: "Page_Type", width: '150px', height: '25px', theme: 'summer' });
    $("#ddlpagetype").jqxDropDownList({ selectedIndex: index });
    });
    //The index value will be the selected item before submit

    shashi
    Member

    but when the user press a delete button the date field is completely empty. Now how can the user enter the date using keyboard without pressing the calender button.

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