diff options
Diffstat (limited to 'lib/prado/framework/Wsat/pages/TWsatScaffolding.page')
-rw-r--r-- | lib/prado/framework/Wsat/pages/TWsatScaffolding.page | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/prado/framework/Wsat/pages/TWsatScaffolding.page b/lib/prado/framework/Wsat/pages/TWsatScaffolding.page new file mode 100644 index 0000000..f3e53df --- /dev/null +++ b/lib/prado/framework/Wsat/pages/TWsatScaffolding.page @@ -0,0 +1,23 @@ +<com:TContent ID="Content"> + <div class="section_title">Scaffolding Generator</div> + + <div> + <com:TPanel ID="tableNames" GroupingText="Select tables to generate CRUD for:" Width="400px"/> + </div> + + <div class="form_row"> + <com:TLabel Text="Output Folder:" ForControl="output_folder" style="margin-right: 8px"/> + <com:TTextBox ID="output_folder" Text="Application.pages" CssClass="in_text" /> + <label style="color: red">*</label> + <com:TRequiredFieldValidator ControlToValidate="output_folder" Text="Output folder cannot be blank." Display="Dynamic" /> + </div> + + <com:TPanel ID="feedback_panel" Visible="false" style="width: 400px"> + <com:TLabel ID="generation_msg" /> + </com:TPanel> + + <div style="text-align: center; width: 400px"> + <com:TButton Text="Preview" OnClick="preview" Visible="false" /> + <com:TButton Text="Generate" OnClick="generate" /> + </div> +</com:TContent> |