Integrated Application Platform › Forums › General › explorerlistview and explorerlistmodellinked › Re: Re: explorerlistview and explorerlistmodellinked
Maybe try using one of ExplorerListView’s notification messages to handle setting the fields instead of the validate method. To use these notifications you need to define a method with that name in your Controller. Check ExplorerListViewControl to see what arguments are being sent for each notification message.
ExplorerListView_EntryLoaded
ExplorerListData_Changed
ExplorerListView_RecordChanged
ExplorerListView_Selection
There are more messages being sent as well. You can search in ExplorerListView for “.Send” if you want to know all the messages that are being sent. Be careful though since some messages are specifically intended for certain controls. You should probably only use messages that start with “ExplorerListView_”.