Hallo Community,
i do create an ExtendedCollection via BeanShel like this:
colln = bean.getExtensionCollection(collectionName); while (...) { collBean = colln.create(); ext_field = collBean.getExtensionField(FIELD_DOC_NAME); ext_field.set(docName); ext_field = collBean.getExtensionField(FIELD_DOC_VERSION); ext_field.set(docVersion); colln.add(collBean); }
I add several doc names wit their versions.
After that i have to sort this collection according to DOC_NAME and DOC_VERSION
How can i do that?
thanks.
Waldemar