cartodb-4.42/lib/assets/javascripts/dashboard/views/public-dataset/public-table-view/public-row-view.js
2024-04-06 05:25:13 +00:00

25 lines
494 B
JavaScript

const RowView = require('dashboard/views/public-dataset/table-view/row-view');
/**
* view used to render each row in public tables
*/
module.exports = RowView.extend({
classLabel: 'cdb.open.PublicRowView',
events: {},
initialize: function () {
this.options.row_header = false;
this.order = this.options.order;
},
_renderGeometry: function (value) {
return this._renderDefault('GeoJSON');
},
_getRowOptions: function () {},
click_header: function (e) {}
});