最新のWeb開発のチュートリアル
 

AppMLフォーム


この章では、データベースに対して入力フォームを作成する方法を示します。


このページの例では、ローカルSQLデータベースを使用します。
ローカルSQLデータベースは、IEやFirefoxで動作しません。 クロムやSafariを使用してください。

フォームのモデルを作成します。

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}})パラメータとして得意とするアプリケーションを実行します。

最後に、フォームを隠します

それが見えないように、フォームにスタイルを追加します。

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>
»それを自分で試してみてください