Hi,
The select tag is not functional in the current version of igniteui-angular . i am using the select in header to select option, ther is no response from select on clicking it as if it was readonly or disabled.
below is sample code for igx-column fro the header part
Hello Shivam,
igxColumnHeader handles mousedown event and prevent its propagation by design. Therefore, what you see is expected behavior. Your select receives mousedown, but never reaches to mouseup neither to mouseclick. In order to make your select to open you should handle mousedown in the select and stop the event propagation. This way event will not reach the column header and all subsequent events will fire.
Please check this StackBlitz where I have implemented that for you and let me know if this solves your issue, or if you have any additional questions on this matter.
Hi Milko,
Thanks for the help, the solution is working fine for me .