Hi,
How to pass a parameter or props to custom renderer ?
Thanks,
Hi,
How to pass a parameter or props to custom renderer ?
Thanks,
I wanted to pass the modified value of the cell in my Custom renderer to display it on Tooltip.
It’s okay, I did it. I used the props of VueJs and it works
const CustomRendererTooltip = {
props:{
oldValue:{
type:String,
default:""
}
},
:
:
}
<CustomRendererTooltip old-value="test" hot-renderer></CustomRendererTooltip>
Thanks,
I’m glad to hear that you’ve already found the solution.
Thank you for updating me.