Signed-off-by: KIRAN KASHALKAR <kiran.kashalkar@riftio.com>
let catalogs = cds.getTransientCatalogs();
const name = path.join('.');
- const isEditable = true;
const isGuid = Property.isGuid(property);
+ const isEditable = isGuid;
const onChange = onFormFieldValueChanged.bind(container);
const isEnumeration = Property.isEnumeration(property);
const isLeafRef = Property.isLeafRef(property);
font-size: 10px;
font-family: monospace;
}
+ input[readonly='readonly'] {
+ background-color: $readonly-background-color;
+ }
}
$common-primary-color: black;
$common-secondary-color: white;
$common-background-color: white;
-$common-foreground-color: black;
\ No newline at end of file
+$common-foreground-color: black;
+
+$readonly-background-color: #ffe;
\ No newline at end of file