Browse Source

Feb 7 [UPDT] : Bug Fixed 'custom_list_view'

pull/254/head
AjmalCybro 2 years ago
parent
commit
46eb5dc7fa
  1. 2
      custom_list_view/__manifest__.py
  2. 4
      custom_list_view/static/src/js/serial_no.js

2
custom_list_view/__manifest__.py

@ -22,7 +22,7 @@
{
'name': 'Custom List View',
'version': '15.0.1.0.0',
'version': '15.0.1.0.1',
'summary': 'Helps to Show Row Number, Fixed Header, Duplicate Record and Highlight Selected Record in List View',
'description': 'Helps to Show Row Number, Fixed Header, Duplicate Record and Highlight Selected Record in List View',
'category': 'Tools',

4
custom_list_view/static/src/js/serial_no.js

@ -13,10 +13,11 @@ ListRenderer.include({
return columns;
},
_renderFooter: function () {
const $footer = this._super.apply(this, arguments);
if(this.hasSelectors){
$footer.find('tr').prepend($('<td>'));
}
return $footer;
},
@ -35,5 +36,6 @@ ListRenderer.include({
}
return $rows;
},
});
});
Loading…
Cancel
Save