Tag: পণ্য

AppML কেস স্টাডি – পণ্য (AppML Case Study – Products)

এইচটিএমএল এইচটিএমএল সোর্স: <!DOCTYPE html> <html lang=”en-US”> <title>Products</title> <link rel=”stylesheet” href=”http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css”> <script src=”http://www.w3schools.com/appml/2.0.3/appml.js”></script> <body> <div class=”container”> <h1>Products</h1> <div id=”Form01″ class=”jumbotron” style=”display:none” appml-controller=”myFormController”>   <div appml-include-html=”inc_formcommands.htm”></div>   <div class=”form-group”>     <label>ProductName:</label>     <input id=”ProductName” class=”form-control”>   </div>   <div class=”form-group”>     <label>Supplier:</label>     <div appml-data=”local?model=model_dropdown_suppliers”>       <select id=”SupplierID” class=”form-control”>       <option appml-repeat=”records” value=”{{SupplierID}}”>{{SupplierName}}</option>       </select>     …

Continue reading