[
https://issues.jboss.org/browse/TEIIDDES-2409?page=com.atlassian.jira.plu...
]
Barry LaFond commented on TEIIDDES-2409:
----------------------------------------
For some reason the table editor, in this case, has got a lazy load flag set in
ModelObjectTableModel. This is causing the PropertyEditorFactory to skip loading the
choices and resulting in an empty List Dialog, rather than a combo box. Setting it to
*false* fixes this issue.
{code}
public void refreshProperties() {
if (instanceList.size() > 0) {
IPropertySource propertySource =
getPropertySource((EObject)instanceList.get(0));
properties = propertySource.getPropertyDescriptors();
for (int i = 0; i < properties.length; ++i) {
if (properties[i] instanceof ModelObjectPropertyDescriptor) {
((ModelObjectPropertyDescriptor)properties[i]).setShowReadOnlyDialog(false);
((ModelObjectPropertyDescriptor)properties[i]).setLazyLoadValues(true);
<<<<<<<<
} else if (properties[i] instanceof ExtensionPropertyDescriptor) {
((ExtensionPropertyDescriptor)properties[i]).setShowReadOnlyDialog(false);
}
}
}
}
{code}
Cannot set Content via Element in Webservice operation input and
output
-----------------------------------------------------------------------
Key: TEIIDDES-2409
URL:
https://issues.jboss.org/browse/TEIIDDES-2409
Project: Teiid Designer
Issue Type: Bug
Components: Modeling, Web Services Support
Affects Versions: 9.0.1
Reporter: Andrej Šmigala
Assignee: Barry LaFond
Priority: Blocker
Attachments: content-via-element-selection.png, ContentViaElementProject.zip
When trying to set Content via element for a web service operation input or output, the
list of available elements is empty, even when there are XML Schema models in the
project.
Windows, Linux
JBDS 8.0.1 GA
Designer 9.0.1 Beta2
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)