amir-alic
amir-alic
+1 This is really a big problem. Would be great if this would be fixed!
I am implementing grid's column selection via context menu => right click on grid's header. So I have e.g. 10 items with check-boxes which determine if a column should be...
Ok, then please fire away with the solution :) I tried with ``` event.preventDefault(); event.stopPropagation(); ``` on item's **execute** event and also on context-menu's **close** event but it makes no...
html: ``` {{ col.name }} ``` typescript: ``` customClick(col, ev) { ev.preventDefault(); ev.stopPropagation(); // .. my logic } ``` I tried it like this and the context-menu does not close...
Yes, that would be the right solution. If I catch some free time in the coming days I'll try to implement a PR.
Thanks for your help. Unfortunately it cannot be done with using just a directive, as you say "can't make a TemplateRef directly in the typescript code". I have now solved...