You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.1 KiB
28 lines
1.1 KiB
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master" Inherits="System.Web.Mvc.ViewPage<QMAPP.Common.Web.Models.PerceptModel>" %>
|
|
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
|
|
|
</asp:Content>
|
|
|
|
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
|
<%=Html.QPList() %>
|
|
<%=Html.QDateGrid<QMAPP.Common.Web.Models.PerceptModel>(Model)%>
|
|
<%=Html.QPEnd() %>
|
|
<script language=javascript>
|
|
function selectItem(rowIndex, rowData) {
|
|
rowData.id = rowData.id.replace(/ /g, " ");
|
|
rowData.code = rowData.code.replace(/ /g, " ");
|
|
parent._setValueAutoComplete(rowData);
|
|
parent.closeAppWindow1();
|
|
return false;
|
|
}
|
|
</script>
|
|
</asp:Content>
|
|
|
|
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
|
|
<table cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td><%=Html.QTButton("close", "close","close", "parent.closeAppWindow1();return false;", (s, f) => { return true; })%> </td>
|
|
</tr>
|
|
</table>
|
|
</asp:Content>
|
|
|