We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This issue is related to #635. Try to create a StInspectorEditCommand
StInspectorEditCommand
StInspectorCommand << #StInspectorEditCommand slots: {}; tag: 'Command'; package: 'NewTools-Inspector'
with the following execute method:
execute self context rawInspectorPageOrNil ifNotNil: [ : page | | pageView pageViewColumns | pageView := page retrievePresenter view. pageViewColumns := pageView attributeTable columns. pageViewColumns detect: [ : c | c evaluation = #stringValue ] ifFound: [ : col | col beEditable ]. pageView update ]
then edit the following method and open a Transcript:
SpStringTableColumn>>#initialize super initialize. 'no editable' traceCr. editable := false. sortable := false
If you open an inspector and click the new Edit button in the top-right:
Dictionary new at: 1 put: 'hola'; at: 2 put: 'bonjour'; yourself.
After making some clicks, it seems the inspector constantly recreates the Spec table, so any beEditable is useless.
beEditable
Maybe we should have edit instead of inspect?
edit
inspect
The text was updated successfully, but these errors were encountered:
hernanmd
No branches or pull requests
This issue is related to #635.
Try to create a
StInspectorEditCommand
with the following execute method:
then edit the following method and open a Transcript:
If you open an inspector and click the new Edit button in the top-right:
After making some clicks, it seems the inspector constantly recreates the Spec table, so any
beEditable
is useless.Maybe we should have
edit
instead ofinspect
?The text was updated successfully, but these errors were encountered: