sugoi internally added

This commit is contained in:
pvincent
2021-08-27 17:54:17 +04:00
parent ef31c26525
commit 445448f43b
100 changed files with 8758 additions and 23 deletions
+30
View File
@@ -0,0 +1,30 @@
package sugoi.form.elements;
/**
* Use this to fill some custom HTML between form elements
*
* @author fbarbut<francois.barbut@gmail.com>
*/
class Html extends sugoi.form.FormElement<String>
{
var html : String;
public function new(name:String,html:String,?label="")
{
this.name = name;
this.html = html;
this.label = label;
super();
}
override public function render()
{
return html;
}
override public function getTypedValue(str:String):String
{
return null;
}
}