您好我在使用名为Odoo的ERP系统。我只是想做一些自定义,但我不太了解jQuery,所以我需要帮助。 即使折叠了,我怎样才能选择所有项目?
我可以在这里获取选择项目的代码:
get_selection: function () {
var result = {ids: [], records: []};
if (!this.options.selectable) {
return result;
}
var records = this.records;
this.$current.find('th.oe_list_record_selector input:checked')
.closest('tr').each(function () {
var record = records.get($(this).data('id'));
result.ids.push(record.get('id'));
result.records.push(record.attributes);
});
return result;
但我不知道为什么当物品折叠时,他们无法检查。
Here是整个JQuery代码。负责全部检查的是名为oe_list_record_selector
如果你能告诉我如何编辑它,我会很感激。