I saw demo about custom command, where it shows details into a Telerik Windows (modal).
We suppose thatwe have product list, and we want obtain ledger entries relative.
I met a problem to pass the Product ID to grid that I want to use for filter ledger entries.
I try to insert a TAG Helper into kendo template
<script type="text/x-kendo-template" id="template">    <div id="details-container">         <div>        <h2>#= description #</h2>        <em>#= ID #</em>      </div>
@(Html.Kendo().Grid<ItemLedgerEntryModel>()
.Name("ileGrid")
.Filterable()
.AutoBind(true)
.Columns(columns =>
{
    columns.Bound(f => f.DocumentNo);
    columns.Bound(f => f.OrderNo);
    columns.Bound(f => f.VendorNo);
    columns.Bound(f => f.PostingDate).Format("{0:dd/MM/yyyy}");
    columns.Bound(f => f.EntryType);
    columns.Bound(f => f.UnitOfMeasureCode);
    columns.Bound(f => f.Quantity).Format("{0:N2}").HtmlAttributes(new { style = "text-align: right;" });
})
.Sortable() // Enable sorting
.Pageable()
.Scrollable(scrollable => scrollable.Virtual(true))
.DataSource(dataSource => dataSource //Configure the Grid data source.
    .Ajax() //Specify that Ajax binding is used.
    .Read(read => read.Action("LedgerEntries", "ItemLedgerEntry").Data(new {itemNo: #= ID #})) //How can I do this????
)
)
    </div></script>
but it not "receives" Produc ID.
Where I wrong?

