diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2014-04-21 12:09:30 +0200 |
---|---|---|
committer | David <ottodavid@gmx.net> | 2014-08-22 12:41:54 +0200 |
commit | b7614a9c62f9e6597ea83bdc6901693efb74e68a (patch) | |
tree | bb5bfe1adb4037904df3185a53a8abbf7de42f01 /tests/FunctionalTests/issues/protected/pages/Issue516.page | |
parent | e3811f0ba597a2b3fe477000f7f54bf75680fbe1 (diff) |
Fixed #516 , added test case
(cherry picked from commit c66097eac2c2691bf0047829275962ec0bf2b41f)
Diffstat (limited to 'tests/FunctionalTests/issues/protected/pages/Issue516.page')
-rw-r--r-- | tests/FunctionalTests/issues/protected/pages/Issue516.page | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/tests/FunctionalTests/issues/protected/pages/Issue516.page b/tests/FunctionalTests/issues/protected/pages/Issue516.page new file mode 100644 index 00000000..c922c6e1 --- /dev/null +++ b/tests/FunctionalTests/issues/protected/pages/Issue516.page @@ -0,0 +1,50 @@ + <com:TContent ID="Content"> + +<h1>Issue 516 Test</h1> + +<com:TActiveDataGrid + Width="800px" + CellPadding="2" + ID="DataGrid" + DataKeyField="ISBN" + AutoGenerateColumns="false" + HeaderStyle.BackColor="black" + HeaderStyle.ForeColor="white" + ItemStyle.BackColor="#BFCFFF" + ItemStyle.Font.Italic="true" + AlternatingItemStyle.BackColor="#E6ECFF" + EditItemStyle.BackColor="lightyellow" + OnEditCommand="editItem" + OnUpdateCommand="saveItem" + OnCancelCommand="cancelItem" + > + <com:TTemplateColumn + ID="BookTitleColumn" + HeaderText="Book Title" + HeaderStyle.Width="400px" + > + <prop:ItemTemplate> + <com:TLiteral Text="<%# $this->Parent->Data['title'] %>" Encode="true" /> + </prop:ItemTemplate> + <prop:EditItemTemplate> + <com:TTextBox ID="TextBox" Text="<%# $this->Parent->Data['title'] %>" /> + <com:TRequiredFieldValidator + ControlToValidate="TextBox" + Display="Dynamic" + ErrorMessage="<br/>Please provide a title." + ValidationGroup = "Group1" + /> + </prop:EditItemTemplate> + </com:TTemplateColumn> + <com:TActiveEditCommandColumn + HeaderText="Edit" + HeaderStyle.Width="100px" + UpdateText="Save" + ItemStyle.HorizontalAlign="Center" + ItemStyle.Font.Italic="false" + ValidationGroup = "Group1" + /> +</com:TActiveDataGrid> + + </com:TContent> + |