Hi Team,
I am using igGrid row selector feature and I set it up like this.
{ name: "Selection", mode: 'row', persist : false, multipleSelection: false }
On UI, once I select one row, it doesn't let me select any other row. It always sends the same row selection data back and it even doesn't change the selected row color once I try to select any other row.
It only works the first time grid loads and it highlights the selected row and then never work again.
Any help ?
Hello Hamza,
Thank you for posting in our community.
I created a small fiddle where I enabled Selection feature along with Row Selectors. I selected a row and afterwards I selected another one. On my side everything worked as expected and selection was correctly styled. I tested on Chrome, Firefox and Edge browsers (latest versions)
Please open this fiddle on your side and let me know what is the behavior. If this is not an accurate demonstration of what you are trying to achieve please feel free to modify it and send I t back to me for further investigation. If you are experiencing the same issue with my sample please get back to me with steps to reproduce the behavior.
Looking forward to hearing from you.
Hi,
I have tried your fiddle, its just working fine. However in my case it isn't working. After first row selection, this isn't working. Ideally all I want is to pass the data from Jquery double click back to my controller. Below are my features. Feels like something isn't working properly.
features: [
{
name: "Filtering",
mode: "advanced",
columnSettings: [
{ columnKey: "ID", allowFiltering: false },
],
filterDialogContainment: "window"
},
name: 'MultiColumnHeaders'
name: "Sorting",
applySortedColumnCss: false,
name: 'Resizing'
name: "Selection",
mode: 'row',
persist: false,
multipleSelection: false
}
]