[Properties] Hide rows without controls

Hide rows for domain object properties that do not have
associated controls from the Edit Properties dialog;
follow up for nasa/openmctweb#92
This commit is contained in:
Victor Woeltjen
2015-09-02 12:01:43 -07:00
parent 17e9e87a2b
commit 3310016264
2 changed files with 4 additions and 1 deletions

View File

@@ -39,7 +39,7 @@ define(
return {
getValue: function (model) { return model[k]; },
setValue: function (model, v) { model[k] = v; },
getDefinition: function () { return {}; }
getDefinition: function () { return { control: 'textfield '}; }
};
});