我正在使用RowDetails创建一个数据表
步骤:
1)我有一个带有DataTable的过滤器部分,当我通过on change事件更改下拉值时,我传递了过滤器的参数
2)在更改事件中,我首先销毁表,然后重新创建(重新绑定)
3)销毁表并重新创建后,当我单击详细信息时,此错误会在第三行中发生。 我随机收到此错误:未捕获的TypeError:无法读取未定义的属性'_detailsShow' 当我单击网格上的按钮(+)并尝试扩展行时,会出现此错误
new Vue({
el: "#formCompleteContainer",
data: {
form: {},
components: []
},
asyncComputed: {
employeeList: function () {
if (_.some(this.components, function (component) {
return component.ComponentInfo.Type === 8
})) {
return $.ajax({
url: "/Form/GetAllUsers",
type: "GET"
});
} else {
return Promise.resolve([]);
}
}
}
});