I am facing issues while trying to use angular-material Autocomplete
for doing inline edit.
Created plunk for the same: Material Autocomplete for Inline Edit - ag-grid
- Autocomplete options are not coming at the expected position. I have to scroll down below the bottom of the grid to see the options.
- Once I select any option, I am not able to see the updated value in the row - I just see blank value instead.
Tried providing various values for isPopup?(): boolean { return false; }
for #1 and getValue() { return this.selectedValue; }
for #2, but not getting any clue what's the actual issue is.
What I want is,
- The options to get displayed at proper position - like what we see while using normal material autocomplete
- The options to get displayed as soon as I open the cell for editing - as of now, I have to click inside the editing cell.
- Once I am done with selecting appropriate value, it should also be updated in the grid.