Hello,
i have
remote template as shown below:
Remote template:
<script id=
"AirPricingWithoutPNRViewModelItemTemplate"
type=
"text/x-kendo-template"
>
<div class=
"postpricingItem"
>
<div>
<table>
<tbody data-template=
"T2Template"
data-bind=
"source: data"
></tbody>
</table>
</div>
<div>Quote: <span
data-bind=
"text: Total"
></span></div> /* attr: title to be attached to this span */
</div>
</script>
I want the Quote element span to have 'title' attribute binding to format as in T1Template below . So that on hover
i can see details.
child Template:
<script id=
"T1Template"
type=
"text/x-kendo-template"
>
<tr>
<td>TST </td>
<td title=
"Passenger Type"
data-bind=
"text: UnitQualifier"
></td>
<td title=
"Passenger Quantity"
data-bind=
"text: Quantity"
></td>
<td title=
"PricingPCC"
data-bind=
"text: OptionFilters.PricingPccInformation.PCCCode"
></td>
#if (data.lkpStatus=="D") {#
<td title=
"Deleted TST"
><i class=
"fa text-danger fa-times"
aria-hidden=
"true"
></i></td>
#} else {#
#}#
<td title=
"Price"
data-bind=
"text: TotalSalesPriceToDisplay"
></td>
</tr>
</script>