Tag: case

AppML কেস স্টাডি – কর্মকর্তা-কর্মচারী (AppML Case Study – Employees)

এইচটিএমএল এইচটিএমএল সোর্স: <!DOCTYPE html> <html lang=”en-US”> <title>Employees</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>Employees</h1> <div id=”Form01″ class=”jumbotron” style=”display:none” appml-data=”local?model=model_employeesform” appml-controller=”myFormController”>   <div appml-include-html=”inc_formcommands.htm”></div>   <div class=”form-group”>     <label>Last Name:</label>     <input id=”LastName” class=”form-control”>   </div>   <div class=”form-group”>     <label>First Name:</label>     <input id=”FirstName” class=”form-control”>   </div>   <div class=”form-group”>     <label>Date …

Continue reading

AppML কেস স্টাডি – শ্রেণীবিভাগ সমূহ (AppML Case Study – Categories)

এইচটিএমএল এইচটিএমএল সোর্স: <!DOCTYPE html> <html lang=”en-US”> <title>Categories</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>Categories</h1> <div id=”Form01″ class=”jumbotron” style=”display:none” appml-data=”local?model=model_categoriesform” appml-controller=”myFormController”>   <div appml-include-html=”inc_formcommands.htm”></div>   <div class=”form-group”>     <label>CategoryName:</label>     <input id=”CategoryName” class=”form-control”>   </div>   <div class=”form-group”>     <label>Description:</label>     <input id=”Description” class=”form-control”>   </div> </div> <div appml-data=”local?model=model_categorieslist”>   <div appml-include-html=”inc_listcommands_nofilter.htm”></div>   …

Continue reading

AppML কেস স্টাডি – কোনো পরিবহনে মাল লেনদেনকারী (AppML Case Study – Shippers)

এইচটিএমএল এইচটিএমএল সোর্স: <!DOCTYPE html> <html lang=”en-US”> <title>Shippers</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>Shippers</h1> <div id=”Form01″ class=”jumbotron” style=”display:none” appml-data=”local?model=model_shippersform” appml-controller=”myFormController”> <div appml-include-html=”inc_formcommands.htm”></div> <div class=”form-group”> <label>ShipperName:</label> <input id=”ShipperName” class=”form-control”> </div> <div class=”form-group”> <label>Phone:</label> <input id=”Phone” class=”form-control”> </div> </div> <div appml-data=”local?model=model_shipperslist”>   <div appml-include-html=”inc_listcommands_nofilter.htm”></div>   <table class=”table table-striped table-bordered”>   <tr>     <th></th>     …

Continue reading

AppML কেস স্টাডি – সরবরাহকারী পাইকার পরিবেশক (AppML Case Study – Suppliers)

এইচটিএমএল এইচটিএমএল সোর্স: <!DOCTYPE html> <html lang=”en-US”> <title>Suppliers</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>Suppliers</h1> <div id=”Form01″ class=”jumbotron” style=”display:none” appml-data=”local?model=model_suppliersform” appml-controller=”myFormController”>   <div appml-include-html=”inc_formcommands.htm”></div>   <div class=”form-group”>     <label>SupplierID:</label>     <input id=”SupplierID” class=”form-control”>   </div>   <div class=”form-group”>     <label>SupplierName:</label>     <input id=”SupplierName” class=”form-control”>   </div>   <div class=”form-group”>     <label>ContactName:</label>     <input …

Continue reading

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

AppML কেস স্টাডি – গ্রাহকরা (AppML Case Study – Customers)

এইচটিএমএল এইচটিএমএল সোর্স:   <!DOCTYPE html> <html lang=”en-US”> <title>Customers</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>Customers</h1> <div id=”Form01″ class=”jumbotron” style=”display:none” appml-data=”local?model=model_customersform” appml-controller=”myFormController”>   <div appml-include-html=”inc_formcommands.htm”></div>   <div class=”form-group”>     <label for=”customername”>CustomerName:</label>     <input id=”customername” class=”form-control”>   </div>   <div class=”form-group”>     <label for=”contactname”>ContactName:</label>     <input id=”contactname” class=”form-control”>   </div>   <div class=”form-group”>     …

Continue reading

AppML কেস স্টাডি – JSON ফাইল (AppML Case Study – JSON Files)

এইচটিএমএল এইচটিএমএল সোর্স: <<!DOCTYPE html> <html lang=”en-US”> <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” appml-data=”appml.php?model=model_cd_from_json”> <h1>CD Collection</h1> <h3>Extracted from an XML file</h3> <div appml-include-html=”inc_listcommands_nofilter.htm”></div> <table class=”table table-striped table-bordered”> <tr> <th>Title</th> <th>Artist</th> <th>Country</th> </tr> <tr appml-repeat=”records”> <td>{{Title}}</td> <td>{{Artist}}</td> <td>{{Country}}</td> </tr> </table> </div> </body> </html>     মডেল এই অ্যাপ্লিকেশনের মধ্যে ব্যবহৃত মডেল   { “rowsperpage” …

Continue reading

AppML কেস স্টাডি – এক্সএমএল ফাইল (AppML Case Study – XML Files)

এইচটিএমএল এইচটিএমএল সোর্স: <!DOCTYPE html> <html lang=”en-US”> <head> <meta charset=”utf-8″> <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> </head> <body> <div class=”container” appml-data=”appml.php?model=model_cd_from_xml”> <h1>CD Collection</h1> <h3>Extracted from an XML file</h3> <div appml-include-html=”inc_listcommands_nofilter.htm”></div> <table class=”table table-striped table-bordered”> <tr> <th>Title</th> <th>Artist</th> <th>Country</th> </tr> <tr appml-repeat=”records”> <td>{{Title}}</td> <td>{{Artist}}</td> <td>{{Country}}</td> </tr> </table> </div> </body> </html>     মডেল এই অ্যাপ্লিকেশনের মধ্যে ব্যবহৃত …

Continue reading

AppML কেস স্টাডি – টেক্সট ফাইল (AppML Case Study – Text Files)

এইচটিএমএল এইচটিএমএল সোর্স: <!DOCTYPE html> <html lang=”en-US”> <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” appml-data=”appml.php?model=model_cd_from_txt”> <h1>CD Collection</h1> <h3>Extracted from an XML file</h3> <div appml-include-html=”inc_listcommands_nofilter.htm”></div> <table class=”table table-striped table-bordered”> <tr> <th>Title</th> <th>Artist</th> <th>Country</th> </tr> <tr appml-repeat=”records”> <td>{{Title}}</td> <td>{{Artist}}</td> <td>{{Country}}</td> </tr> </table> </div> </body> </html>   মডেল এই অ্যাপ্লিকেশনের মধ্যে ব্যবহৃত মডেল { “rowsperpage” : 7, …

Continue reading

Bootstrap Case: নেভিগেশান বার যোগ করা (Adding a Navigation Bar)

শেখ মাহফুজুর রহমান   নেভিগেশান বার একটি নেভিগেশান বার হলো একটি নেভিগেশান হেডার যা পেজের উপরের দিকে যোগ করা হয়। বুটস্ট্র্যাপের মাধ্যমে একটি নেভিগেশান বারকে স্ক্রিনের সাইজ অনুযায়ী এক্সট্যান্ড অথবা কলাপ্স করা যায়। অর্থাৎ ডিভাইসের ধরণ অনুসারে সুবিধামতো নেভিগেশান বারকে সেটাপ করা যায়। <nav class=”navbar navbar-default”> এর সাহাজ্যে একটি সাধারণ নেভিগেশান বার তৈরি করা যায়। …

Continue reading