|
@@ -492,6 +492,7 @@ class UI {
|
|
|
switch ($xsdType) {
|
|
|
|
|
|
case 'xsd:long':
|
|
|
+ case 'xsd:int':
|
|
|
case 'xsd:integer': {
|
|
|
$html->attrs['type'] = 'number';
|
|
|
$html->attrs['class'][] = 'input-small';
|
|
@@ -641,7 +642,13 @@ class UI {
|
|
|
return '...';
|
|
|
} break;
|
|
|
|
|
|
- default: return "unknown Type \"{$xsdType}\"";
|
|
|
+ default: {
|
|
|
+ if ('ref:' === substr($xsdType, 0, 4)) {
|
|
|
+ return "Funkcja w trakcie przygotowanie (ref do '" . substr($xsdType, 4) . "')";
|
|
|
+ }
|
|
|
+
|
|
|
+ return "unknown Type \"{$xsdType}\"";
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
$html->attrs['class'][] = 'form-control';
|