Posted 23 September 2024, 4:25 am EST
I’m using TransposedMultiRow and I want to add AutoComplete instead of ComboBox in a cell. After checking documentation, I tried adding the “editor” key to “cells” in “layoutDefinition” (check the below demo).
{ cells:
[{ binding: 'customer.city',
header: 'City',
dataMap: cityMap,
editor: new AutoComplete(document.createElement('div'), {
itemsSource: cities,
selectedValuePath: 'id',
displayMemberPath: 'value'
}) }] }
However, when clicking on cell, the autocomplete is not displayed.
Do you know why this happened and is there a solution for this problem?
Demo: https://jscodemine.mescius.io/sample/wGxylOPhgEOG9z2cnw-B0g/
Source Code: Grid_TransposedMultiRow_LayoutDefinition_Vue_2024-09-23.zip