I have a gridlist control with 4 gridlistitem in the following format
<f:GridListItem>
<m:VBox>
<m:HBox >
<m:Label />
<m:Input />
<m:Text />
</m:HBox>
<m:HBox >
<m:Label />
<m:Input />
<m:Text />
</m:HBox>
</m:VBox>
</f:GridListItem>
<f:GridListItem>
<m:VBox>
<m:HBox >
<m:Label />
<m:Input />
<m:Text />
</m:HBox>
<m:HBox >
<m:Label />
<m:Input />
<m:Text />
</m:HBox>
</m:VBox>
</f:GridListItem>
<f:GridListItem>
<m:VBox>
<m:HBox >
<m:Label />
<m:Input />
<m:Text />
</m:HBox>
<m:HBox >
<m:Label />
<m:Input />
<m:Text />
</m:HBox>
<m:HBox >
<m:Label />
<m:Input />
<m:Text />
</m:HBox>
<m:HBox >
<m:Label />
<m:Input />
<m:Text />
</m:HBox>
</m:VBox>
</f:GridListItem>
<f:GridListItem>
<m:VBox>
<m:HBox >
<m:Label />
<m:Input />
<m:Text />
</m:HBox>
<m:HBox >
<m:Label />
<m:Input />
<m:Text />
</m:HBox>
<m:HBox >
<m:Label />
<m:Input />
<m:Text />
</m:HBox>
</m:VBox>
</f:GridListItem>
When in an input box and press on “End” key from the keyboard, the expectation is that the cursor is placed at the end of the input box, but instead it goes and selects the last GridListItem(the 4th one).
Is there a way around this?