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
+19
View File
@@ -0,0 +1,19 @@
package sugoi.form.elements;
/**
* ...
* @author fbarbut
*/
class StringSelect extends Selectbox<String>
{
override function getTypedValue(str:String){
str = StringTools.trim(str);
if (str == "" || str==null) {
return null;
}else{
return str;
}
}
}