jQWidgets Forums
Forum Replies Created
Viewing 4 posts - 1 through 4 (of 4 total)
-
Author
-
March 19, 2013 at 10:11 am in reply to: initialising a pop up window initialising a pop up window #17447
Can u please give the code for init content for the above requirement.
March 19, 2013 at 9:57 am in reply to: initialising a pop up window initialising a pop up window #17438Hi ,
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>
March 19, 2013 at 9:22 am in reply to: Regarding selecting an item on page load Regarding selecting an item on page load #17413$(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
February 27, 2013 at 1:26 pm in reply to: calender button should show month calender button should show month #15955but 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.
-
AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)