최신 웹 개발 튜토리얼
 

AppML형태


이 장에서는 데이터베이스에 대한 입력 양식을 구성하는 방법을 보여줍니다.


이 페이지의 예는 로컬 SQL 데이터베이스를 사용합니다.
로컬 SQL 데이터베이스는 IE 나 파이어 폭스에서 작동하지 않습니다. 크롬이나 사파리를 사용합니다.

양식 모델 만들기

model_customersform.js

{
"database" : {
    "connection" : "localmysql",
    "maintable" : "Customers",
    "keyfield" : "CustomerID",
    "sql" : "SELECT * FROM Customers"},
"updateItems" : [
    {"item" : "CustomerName"},
    {"item" : "Address"},
    {"item" : "PostalCode"},
    {"item" : "City"},
    {"item" : "Country"}]
}

HTML 양식 만들기

이전 장에서는 데이터베이스에서 레코드를 나열하는 응용 프로그램을 만들었습니다.

이제 페이지에 양식 응용 프로그램을 추가 :

HTML 양식

<div id="Form01" appml-data="local?model=model_customersform"
class="jumbotron">

<div class="form-group">
  <label for="customername">Customer:</label>
  <input id="customername" class="form-control">
</div>

<div class="form-group">
  <label for="address">Address:</label>
  <input id="address" class="form-control">
</div>

<div class="form-group">
  <label for="city">City:</label>
  <input id="city" class="form-control">
</div>

<div class="form-group">
  <label for="postalcode">Postal Code:</label>
  <input id="postalcode" class="form-control">
</div>

<div class="form-group">
  <label for="country">Country:</label>
  <input id="country" class="form-control">
</div>

</div>
»스스로를보십시오

HTML 양식 설명

appml 데이터 = "지방? 모델 = model_customersform는"폼의 AppML 응용 프로그램을 정의합니다.


HTML 양식 명령 만들기

좋아하는 스타일 시트를 사용하여 (we use bootstrap) , 그리고 원하는 형태로 명령을 만듭니다

inc_formcommands.htm

<button type="button" class="close" onclick="document.getElementById('Form01').style.display='none';">X</button>

<button type="button" class="close">X</button>

<div class="btn-toolbar" style="margin-bottom:20px;">
<div class="btn-group">

<button type="button" class="btn btn-default" onclick="appml('Form01').newRecord();">
<span class="glyphicon glyphicon-new-window"></span> New</button>

<button type="button" class="btn btn-primary" onclick="appml('Form01').saveRecord();">
<span class="glyphicon glyphicon-floppy-disk"></span> Save</button>

<button type="button" class="btn btn-default" onclick="appml('Form01').deleteRecord();">
<span class="glyphicon glyphicon-trash"></span> Delete</button>

</div>
</div>

<div id="appmlmessage" class="alert alert-warning" style="display:none;">
<button type="button" class="close"
onclick="this.parentNode.style.display='none';">X</button>
<div id="message"></div>

</div>

양식 명령은 다음과 같습니다

양식 양식에의 명령을 포함 :.

HTML 양식

<div id="Form01" appml-data="local?model=model_customersform"
class="jumbotron">

<div appml-include-html="inc_formcommands.htm"></div>

<div class="form-group">
<label for="customername">Customer:</label>
<input id="customername" class="form-control">
</div>

<label for="address">Address:</label>
<input id="address" class="form-control">
</div>

<div class="form-group">
<label for="city">City:</label>
<input id="city" class="form-control">
</div>

<div class="form-group">
<label for="postalcode">Postal Code:</label>
<input id="postalcode" class="form-control">
</div>

<div class="form-group">
<label for="country">Country:</label>
<input id="country" class="form-control">
</div>

</div>
»스스로를보십시오

테이블에 클릭 가능한 열 추가

이전 장에서는 데이터베이스에서 레코드를 나열하는 응용 프로그램을 만들었습니다.

이제 테이블에 새 열을 추가 :

HTML 소스

<div appml-data="local?model=model_customerslist">

<h1>Customers</h1>
<div appml-include-html="inc_listcommands.htm"></div>
<div appml-include-html="inc_filter.htm"></div>

<table class="table table-striped table-bordered">
  <tr>
    <th></th>
    <th>Customer</th>
    <th>City</th>
    <th>Country</th>
  </tr>
  <tr appml-repeat="records">
    <td style="cursor:pointer;width:34px;"
        onclick="appml('Form01').run({{CustomerID}})">
        <span class="glyphicon glyphicon-edit"></span></td>

    <td>{{CustomerName}}</td>
    <td>{{City}}</td>
    <td>{{Country}}</td>
  </tr>
</table>

</div>
»스스로를보십시오

onclick 이벤트 (in the new column) ID = "Form01"로 HTML 요소에 위치한 AppML 응용 프로그램을 실행하는 호출을 트리거 :

  • appml('Form01') AppML 응용 프로그램을 반환
  • run({{CustomerID}}) 매개 변수로 CustomerID를 가진 응용 프로그램을 실행합니다.

마지막으로, 양식 숨기기

그것은 눈에 보이지 않는 폼에 스타일을 추가 :

HTML

<div id="Form01" appml-data="local?model=model_customersform"
appml-controller="myFormController"
class="jumbotron" style="display:none" >

이로드 및 데이터를 표시 할 준비가되어있는 경우에만 폼을 표시하려면 폼에 컨트롤러를 추가 :

제어 장치

<script>
function myFormController($appml) {
    if ($appml.message == "ready") {return -1;}
    if ($appml.message == "loaded") {
        document.getElementById("Form01").style.display="";
    }
}
</script>
»스스로를보십시오