You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
I'm having a problem when editing the titles of items in the cell based list. Renaming an item's title and selecting outside the cell or hitting the return key causes an exception:
Exception detected while handling key input.
-[NSProxy doesNotRecognizeSelector:controlTextDidEndEditing:] called!
When you then deselect the cell the title returns to the previous one.
I check the demo app and it has the same problem on the cell based list but it works fine on the view based.
Any ideas?
The text was updated successfully, but these errors were encountered:
The issue here is that -controlTextDidEndEditing: is neither a (PXSourceList | NSOutlineView)Delegate or (PXSourceList | NSOutlineView)DataSource method but is implemented by NSOutlineView, so PXSourceListDelegateDataSourceProxy returns YES in -respondsToSelector: for this selector (see here) but then doesn't actually generate a method signature for it in -methodSignatureForSelector: because it's not a delegate/data source method.
This is probably best addressed as a separate case for forwarding NSControl delegate methods (which this is). I'll get a fix out as soon as I can (which might be a week or two).
I'm having a problem when editing the titles of items in the cell based list. Renaming an item's title and selecting outside the cell or hitting the return key causes an exception:
When you then deselect the cell the title returns to the previous one.
I check the demo app and it has the same problem on the cell based list but it works fine on the view based.
Any ideas?
The text was updated successfully, but these errors were encountered: