You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I want to be able to easily access the cell value from the cellTemplate, rather than having to read it from the row variable. In my case, the column key is a nested object. I don't have access to the render pipe, so I can't easily extract it either.
Describe the solution you'd like
Just expose the value as extracted by the render pipe as a template variable. This is all I'd need 90% of the time, and will make the templates more reusable. e.g., in my case, I want a light (on/off) based on the boolean value of the column. The column may be enabled or chilld.enabled.
Describe alternatives you've considered
Currently I've just copied the render pipe to my own code base.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I want to be able to easily access the cell value from the cellTemplate, rather than having to read it from the
row
variable. In my case, the column key is a nested object. I don't have access to therender
pipe, so I can't easily extract it either.Describe the solution you'd like
Just expose the
value
as extracted by therender
pipe as a template variable. This is all I'd need 90% of the time, and will make the templates more reusable. e.g., in my case, I want a light (on/off) based on the boolean value of the column. The column may beenabled
orchilld.enabled
.Describe alternatives you've considered
Currently I've just copied the render pipe to my own code base.
The text was updated successfully, but these errors were encountered: