keep asking questions.
Ok... :)
In the custom render method you can use Magritte to generate a
read-only view of the fields, try something along:
html table: [
aStructure description do: [ :each |
(each isEditable and: [ each componentClass notNil ])
ifTrue: [
html tableRow: [
html tableHeading: each label.
html tableData: [
(each componentClass memento:
aStructure description: each)
renderViewerOn: html ] ] ] ]
]
This way it ignores pier syntax including all the 'special' symbols in
text... I can't understand how to fix it?
--
Dennis Schetinin