當前位置:
首頁 > 知識 > <AppML> Products-完整的應用程序

<AppML> Products-完整的應用程序

<AppML> Products-完整的應用程序

源代碼

HTML 源代碼

<html>

<body>

<h1>Products</h1>

<div id="Form01"></div>

<div id="List01"></div><br>

<table id="Template01" class="appmltable" stylex="width:100%;display:none">

<tr>

<th></th>

<th>Product Name</th>

<th>Category</th>

<th>Supplier</th>

</tr>

<tr id="appml_row">

<td stylex="cursor:pointer" onclick="productForm.run("Form01","Template02","#ProductID#")">

<img src="Images/appmlPlus.png"></td>

<td>#ProductName#</td>

<td>#CategoryName#</td>

<td>#SupplierName#</td>

</tr>

</table>

<div id="Template02" class="appmlform" stylex="width:100%;display:none">

<label>ProductName:</label><input id="ProductName">

<label>Supplier:</label>

<select id="SupplierID" data-appmlapplication="Models/Dropdown_Suppliers">

</select>

<label>Category:</label>

<select id="CategoryID" data-appmlapplication="Models/Dropdown_Categories">

</select>

<label>Unit:</label><input id="Unit">

<label>Price:</label><input id="Price">

</div>

<script src="appml.js"></script>

<script>

var products,productForm

products=new AppML("appml.php","Models/Products");

products.run("List01","Template01");

productForm=new AppML("appml.php","Models/Products");

productForm.displayType="form";

</script>

</body>

</html>

<AppML> Products-完整的應用程序

喜歡這篇文章嗎?立刻分享出去讓更多人知道吧!

本站內容充實豐富,博大精深,小編精選每日熱門資訊,隨時更新,點擊「搶先收到最新資訊」瀏覽吧!


請您繼續閱讀更多來自 程序員小新人學習 的精彩文章:

<AppML> Customers-完整的應用程序
軟體開發設計模式
設計模式簡介
<AppML> 案例研究-簡介

TAG:程序員小新人學習 |