Using 8.5.3, I have an Xpage with a value picker that populates a dojo list text box. This works fine. However, I need to populate some other fields based on the selection from the value picker. If I go to the events panel for the ListTextBox in domino designer to add events it shows errors, but from the all properties panel of the ListTextBox there are events listed. These events are client-side events which while not ideal, I can work around. However even a simple alert box does not work from these events.
Here is my sample code:
<xe:djextListTextBox id="dLinkedGroupsIDsTX"
multipleSeparator="," intermediateChanges="true" displayLabel="true"
value="#{document1.dLinkedGroupsTX}" onChange="alert('change');">
</xe:djextListTextBox>
<xe:valuePicker id="valuePicker1" for="dLinkedGroupsIDsTX"
dialogTitle="Linked Groups" pickerIcon="add.png" listWidth="700px">
<xe:this.dataProvider>
<xe:simpleValuePicker valueListSeparator=","
labelSeparator="~">
<xe:this.valueList><![CDATA[#{javascript:@DbColumn("","vwGroupLU",4)}]]></xe:this.valueList>
</xe:simpleValuePicker>
</xe:this.dataProvider>
</xe:valuePicker>
Any help would be greatly appreciated!
UPDATE It seems from further testing that all the other events seem to fire. onFocus, onClick, etc.. But that doesn't really help me :-( Perhaps there is another way to go about this?