diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2014-04-20 19:42:36 +0200 |
---|---|---|
committer | David <ottodavid@gmx.net> | 2014-08-21 17:32:55 +0200 |
commit | e3811f0ba597a2b3fe477000f7f54bf75680fbe1 (patch) | |
tree | 9f991685dd4b22b47af8ff0dfc3f984a45cb4b83 /demos/quickstart/protected/pages/Controls/Samples | |
parent | 37e772cb8582fe772dbea72286874cf5335dd895 (diff) |
Fix #515
(cherry picked from commit f95623e43ce5829b91d1fde0e7978aca96e3e936)
Diffstat (limited to 'demos/quickstart/protected/pages/Controls/Samples')
-rwxr-xr-x | demos/quickstart/protected/pages/Controls/Samples/THtmlArea/Home.page | 8 | ||||
-rwxr-xr-x | demos/quickstart/protected/pages/Controls/Samples/THtmlArea4/Home.page | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/THtmlArea/Home.page b/demos/quickstart/protected/pages/Controls/Samples/THtmlArea/Home.page index 5150922f..5f01c07e 100755 --- a/demos/quickstart/protected/pages/Controls/Samples/THtmlArea/Home.page +++ b/demos/quickstart/protected/pages/Controls/Samples/THtmlArea/Home.page @@ -29,7 +29,7 @@ THtmlArea with manually set options </td></tr>
<tr><td class="samplenote">
-THtmlArea with visual editting disabled:
+THtmlArea with visual editing disabled:
</td><td class="sampleaction">
<com:THtmlArea ID="HtmlArea3" EnableVisualEdit="false" />
<br/>
@@ -38,6 +38,12 @@ THtmlArea with visual editting disabled: <com:TLiteral Encode="true" ID="Result3" />
</td></tr>
+<tr><td class="samplenote">
+Read-only THtmlArea:
+</td><td class="sampleaction">
+<com:THtmlArea ID="HtmlArea4" ReadOnly="true" Text="Sample html text: <b>bold</b> <i>italic</i>" />
+</td></tr>
+
</table>
</com:TContent>
diff --git a/demos/quickstart/protected/pages/Controls/Samples/THtmlArea4/Home.page b/demos/quickstart/protected/pages/Controls/Samples/THtmlArea4/Home.page index 6bb6449c..2b6c7a7a 100755 --- a/demos/quickstart/protected/pages/Controls/Samples/THtmlArea4/Home.page +++ b/demos/quickstart/protected/pages/Controls/Samples/THtmlArea4/Home.page @@ -29,7 +29,7 @@ THtmlArea4 with manually set options </td></tr> <tr><td class="samplenote"> -THtmlArea4 with visual editting disabled: +THtmlArea4 with visual editing disabled: </td><td class="sampleaction"> <com:THtmlArea4 ID="HtmlArea3" EnableVisualEdit="false" /> <br/> @@ -38,6 +38,12 @@ THtmlArea4 with visual editting disabled: <com:TLiteral Encode="true" ID="Result3" /> </td></tr> +<tr><td class="samplenote"> +Read-only THtmlArea: +</td><td class="sampleaction"> +<com:THtmlArea4 ID="HtmlArea4" ReadOnly="true" Text="Sample html text: <b>bold</b> <i>italic</i>" /> +</td></tr> + </table> </com:TContent> |