diff options
author | Daniel <darthdaniel85@gmail.com> | 2013-11-17 10:17:44 -0800 |
---|---|---|
committer | Daniel <darthdaniel85@gmail.com> | 2013-11-17 10:17:44 -0800 |
commit | b0c2fecd42bd8b95f2535a525b035f27aebde287 (patch) | |
tree | 9a709073895f4f52713ed0e83241278c4f6f6e57 /framework/Wsat/pages/TWsatGenerateAR.page | |
parent | 4cdac46fcc8411607352defeb962602f93a5b26b (diff) |
WSAT, similar to Microsoft - Web Site Administration Tool and Yii's Gii, will allow as to generate a lot code such as AR classes with the proper relationships... scaffolding... as well as to admin the app configuration and pages configurations in a GUI fashion.
Diffstat (limited to 'framework/Wsat/pages/TWsatGenerateAR.page')
-rw-r--r-- | framework/Wsat/pages/TWsatGenerateAR.page | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/framework/Wsat/pages/TWsatGenerateAR.page b/framework/Wsat/pages/TWsatGenerateAR.page new file mode 100644 index 00000000..3905d023 --- /dev/null +++ b/framework/Wsat/pages/TWsatGenerateAR.page @@ -0,0 +1,23 @@ +<com:TContent ID="Content"> + <div style="margin-left: 220px"> + <div class="form_row"> + <com:TLabel Text="Table Name:" ForControl="table_name" style="margin-right: 14px" /> + <com:TTextBox ID="table_name" Text="*" CssClass="in_text" /> + </div> + <div class="form_row"> + <com:TLabel Text="Class Prefix:" ForControl="class_prefix" style="margin-right: 16px"/> + <com:TTextBox ID="class_prefix" Text="AR_" CssClass="in_text" /> + </div> + <div class="form_row"> + <com:TLabel Text="Output Folder:" ForControl="output_folder"/> + <com:TTextBox ID="output_folder" Text="Application.App_Data.AR_Classes" CssClass="in_text" /> + </div> + + <br/> + <div style="text-align: center"> + <com:TButton Text="Preview" OnClick="preview" /> + <com:TButton Text="Generate" OnClick="generate" /> + </div> + </div> + +</com:TContent> |