The conditional tooltip is not working on kendo UI Grid column.
The following code is not applying the condition for title and instead showing the whole text
'#= (!IsSynced && !AddressNickname.includes('NA')) ? 'This can be updated in the details tab' : 'Edit Address' #'
Here is the Code
columns.Command(command => command.Custom("Address")
.Click("AddressList.Address")
.Text("<span class='fas fa-pencil-alt fa-fw'></span>")
.HtmlAttributes(new { title = "#= (!IsSynced && !AddressNickname.includes('NA')) ? 'This can be updated in the details tab' : 'Edit Address' #" })
#=which renders the raw value.#:will render the value as HTML, but just#will execute arbitrary JavaScript, which looks to be the one you want.