From 633243311dd745aeb1cbc44b513a91250ae90672 Mon Sep 17 00:00:00 2001 From: YNH Webdev Date: Thu, 5 Sep 2013 14:48:19 +0200 Subject: [PATCH] Change wsf control --- library/server/wsf_html/webcontrol/wsf_button_control.e | 2 +- library/server/wsf_html/webcontrol/wsf_control.e | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/library/server/wsf_html/webcontrol/wsf_button_control.e b/library/server/wsf_html/webcontrol/wsf_button_control.e index 7ef5bd1a..1dcb968a 100644 --- a/library/server/wsf_html/webcontrol/wsf_button_control.e +++ b/library/server/wsf_html/webcontrol/wsf_button_control.e @@ -59,7 +59,7 @@ feature render: STRING do - Result := "" + Result := "" end set_text (t: STRING) diff --git a/library/server/wsf_html/webcontrol/wsf_control.e b/library/server/wsf_html/webcontrol/wsf_control.e index a8796679..0ae82d73 100644 --- a/library/server/wsf_html/webcontrol/wsf_control.e +++ b/library/server/wsf_html/webcontrol/wsf_control.e @@ -11,11 +11,17 @@ feature control_name: STRING + tag_name: STRING + + css_class: LINKED_LIST[STRING] + feature {NONE} - make (n: STRING) + make (n,a_tag_name: STRING) do control_name := n + tag_name := a_tag_name + create css_class.make create state_changes.make ensure attached state_changes