Posted 26 April 2020, 12:46 am EST
Hello, thank you in advance for your time on this issue.
My app is angular 8. I am using flex grid with dataMaps for my dropdown columns. If my columns and values are:
Col1_Dropdown, Col2_Text
{ID: 1, Name: “G1”}, “Test1”
{ID: 2, “G2”}, “Test2”
{ID: 3, “G3”}, “Test3”
And I copy all 3 rows and paste them I get the following:
Col1_Dropdown, Col2_Text
{ID: 1, Name: “G1”}, “Test1”
{ID: 2, “G2”}, “Test2”
{ID: 3, “G3”}, “Test3”
{ID: 3, “G3”}, “Test1”
{ID: 3, “G3”}, “Test2”
{ID: 3, “G3”}, “Test3”
The dropdown column has the last row values replicated three times, but the text column is replicated like I want/expect.
This stackblitz shows the issue: https://stackblitz.com/edit/angular-o4mwk3?file=src%2Fapp%2Fapp.component.ts
How do I get flex grid dropdowns to work how I am expecting?
Thanks
-Chris