我正在使用Kendo ui detail template并且只想访问子网格以进行自定义(css),但我不知道如何访问它。我看过一些只带我去的例子:
dataBound: function()
{
var dataSource = this.dataSource;
this.element.find('tr.k-master-row').each(function()
{
var row = $(this);
var data = dataSource.getByUid(row.data('uid'));
row.find('.k-hierarchy-cell').css({ opacity: 0.3, cursor: 'default' });
});
},
但正如你们中的一些人可能知道的那样,这是用于扩展主行然后显示子网格的按钮。实际上它与我想要的东西无关。
function detailInit(e)
{
e.detailRow.find(".k-detail-cell > div.k-grid.k-widget").css("background-color", "yellow");
console.log(e.detailRow[0]);
$('<div id="childGrid"> <div/>').appendTo(e.detailCell).kendoGrid({
"rest of the code not relevant"
我使用console.log查看详细信息行内部并执行...“某事”但我不知道如何...