|
@@ -696,6 +696,10 @@ class TableAcl extends Core_AclBase {
|
|
|
$html->attrs['type'] = 'text';
|
|
|
$html->attrs['class'][] = 'input-small';
|
|
|
}
|
|
|
+ else if (substr($colType['type'], 0, 6) == 'float') {
|
|
|
+ $html->attrs['type'] = 'text';
|
|
|
+ $html->attrs['class'][] = 'input-small';
|
|
|
+ }
|
|
|
else if (substr($colType['type'], 0, 7) == 'decimal') {
|
|
|
$html->attrs['type'] = 'text';
|
|
|
$html->attrs['class'][] = 'input-small';
|