Use render tag

This commit is contained in:
YNH Webdev
2013-09-05 15:33:56 +02:00
parent c50a46206d
commit fa35c22d2d
4 changed files with 25 additions and 4 deletions

View File

@@ -10,6 +10,9 @@ class
inherit
WSF_TEXT_CONTROL
redefine
render
end
create
make_textarea
@@ -21,4 +24,11 @@ feature {NONE}
make_text (n, t)
tag_name := "textarea"
end
feature
render: STRING
do
Result :=render_tag(text,"")
end
end