Files
EWF/library/server/wsf_js_widget/input/wsf_textarea_control.e

37 lines
525 B
Plaintext

note
description: "Summary description for {WSF_TEXT_CONTROL}."
author: ""
date: "$Date$"
revision: "$Revision$"
class
WSF_TEXTAREA_CONTROL
inherit
WSF_INPUT_CONTROL
redefine
render
end
create
make_textarea
feature {NONE} -- Initialization
make_textarea (n, t: STRING)
-- Initialize with specified control name and text to be displayed in this textarea
do
make_input (n, t)
tag_name := "textarea"
end
feature -- Rendering
render: STRING
do
Result := render_tag (text, "")
end
end