We have implemented cellClick mainly for the date resource cells in the timeline view to get the clicked cell date. Is it possible to disable cellClick in the resource column alone?
PFA video for your reference,
Support Forum
Hey prasath,
You can use the following snippet (please note that on the snippet the resource is mapped on name
field, which could be different on your project)
listeners: {
cellClick: ({ column }) => {
if(column.field !== 'name') {
console.log('click not resource column')
}
}
}
- Attachments
-
- Screen Recording 2024-08-12 at 09.32.54.mov
- (7.35 MiB) Downloaded 5 times
Best regards,
Márcio