Posted 8 April 2018, 3:23 pm EST
How do i access the events and methods when sing flex grid in Vue2 typescript?
Q1 Ex: the rowAdded event buinding was successful and the method rowAdded() is being hit whenever a row is added, but how do i specify the params CellRangeEventArgs? For suppose i would want to get the data of the row or cell that was added.
<wj-flex-grid :items-source="data" :allowAddNew="true" :rowAdded="rowAdded()">
<wj-flex-grid-filter></wj-flex-grid-filter>
</wj-flex-grid>
Q2:How do i utilize the getCellData method ? How can i specify that in the template or either programmatically ?
Q3: How do can i make a column searchable (Kind of like auto fill) ? Ex: A user can type a country name partially and the column can show all the search results as a drop down ?
P.S I am using Typescript , and would like to know how this can be achieved in similar instance.
Thank you.
