From 22702d4c7fd3d0a1e0d680b8d8a4a3c63035a6a2 Mon Sep 17 00:00:00 2001 From: leithoff Date: Tue, 19 Jul 2016 16:22:25 +0200 Subject: [PATCH] Updated CodeCorner3 (markdown) --- CodeCorner3.md | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/CodeCorner3.md b/CodeCorner3.md index 558b88e..fe3a3dd 100644 --- a/CodeCorner3.md +++ b/CodeCorner3.md @@ -169,11 +169,18 @@ An h-rule and a grid with our inputboxes and two buttons. one to clear, one to s
Step 4
-
as type choose Text, as label name, as name name, add a blurText of your choice and maybe a help. You may set the dimensions of the textfield by setting the options to 20,40 (approximately 20 character visible, 40 character in available width):
+
+thats a typical textbox with lable up front (description), placed in a grid (for alignment) +
+				<row>
+					<description font_style="20" href="40" value="firstname" no_lang="1"/>
+					<textbox blur="Type in a name" id="test_firstname" no_lang="1" size="25" maxlength="40"/>
+				</row>
+
+
-
[vfs:/home/Manual/etemplate2.png]
Save your work.
@@ -189,14 +196,13 @@ An h-rule and a grid with our inputboxes and two buttons. one to clear, one to s
-
    -
  • Doubleclick on the label of our newly created name-text-field.
  • -
  • in the upper area of the properties window is a bar with three select boxes. Within the third one select insert a column behind.
  • -
  • Doubleclick on the label of our name-text-field.
  • -
  • in the third line of the properties window, klick on the tiny right-arrow behind the word grid.
  • -
  • choose Submitbutton, as label submit, as name submit
  • -
  • Save
  • -
+
+				<row>
+					<button label="new " id="new"/>
+					<button align="right" label="submit" id="submit"/>
+				</row>
+
+those are buttons in a row (of a grid)