Hi,
Is there a way to implement the drag and drop functionality to the grid column, in order to have a custom behavior ?
What I tried:
1. Get an access
to grid internal services or replace them with my custom services. That would
allow me to control behavior of components on low level and reuse their
events-emitting systems.
2. Get an access
to grid internal components/directives by using @ViewChild(ren). That would
allow me to subscribe on events on child components level.
3. Implement the
d&d functionality by myself without kendo-ui grid API by adding custom
mouse events listeners on grid container.
What I got:
1. All services are
private (marked as hidden). It's hard to reference them externally. Replacing
them with custom implementation didn't work.
2. Most of the
internal components/directives are also private. Didn't get a valid approach
(selector for ViewChild) to get required view elements.
3. Kendo-ui grid sorting,
grouping and reordering features for columns suppress most of the mouse events.
It works only for columns with these features turned off.