diff --git a/src/components/datatable/DataTable.d.ts b/src/components/datatable/DataTable.d.ts
index 6989dfbdf..e5d1579ee 100644
--- a/src/components/datatable/DataTable.d.ts
+++ b/src/components/datatable/DataTable.d.ts
@@ -46,6 +46,7 @@ export declare class DataTable extends Vue {
stateKey?: string;
editMode?: string;
editingRows?: any[];
+ rowClass?: any;
$emit(eventName: 'page', event: Event): this;
$emit(eventName: 'sort', event: Event): this;
$emit(eventName: 'filter', event: Event): this;
diff --git a/src/components/datatable/DataTable.vue b/src/components/datatable/DataTable.vue
index bf60e91e0..e1fe970ae 100644
--- a/src/components/datatable/DataTable.vue
+++ b/src/components/datatable/DataTable.vue
@@ -314,6 +314,10 @@ export default {
editingRows: {
type: Array,
default: null
+ },
+ rowClass: {
+ type: null,
+ default: null
}
},
data() {
@@ -901,14 +905,22 @@ export default {
return this.dataKey ? ObjectUtils.resolveFieldData(rowData, this.dataKey): index;
},
getRowClass(rowData) {
+ let rowStyleClass = ['p-datatable-row'];
if (this.selection) {
- return ['p-datatable-row', {
+ rowStyleClass.push({
'p-highlight': this.isSelected(rowData)
- }];
+ });
}
- else {
- return 'p-datatable-row';
+
+ if (this.rowClass) {
+ let rowClassValue = this.rowClass(rowData);
+
+ if (rowClassValue) {
+ rowStyleClass.push(rowClassValue);
+ }
}
+
+ return rowStyleClass;
},
selectRange(event) {
let rangeStart, rangeEnd;
diff --git a/src/router.js b/src/router.js
index d8bd74674..8f4ee7072 100644
--- a/src/router.js
+++ b/src/router.js
@@ -200,7 +200,12 @@ export default new Router({
path: '/datatable/crud',
name: 'datatablecrud',
component: () => import('./views/datatable/DataTableCrudDemo.vue')
- },
+ },
+ {
+ path: '/datatable/style',
+ name: 'datatablestyle',
+ component: () => import('./views/datatable/DataTableStyleDemo.vue')
+ },
{
path: '/dataview',
name: 'dataview',
diff --git a/src/views/datatable/DataTableDoc.vue b/src/views/datatable/DataTableDoc.vue
index 76f199658..a85064ef3 100644
--- a/src/views/datatable/DataTableDoc.vue
+++ b/src/views/datatable/DataTableDoc.vue
@@ -1344,6 +1344,67 @@ export default {
}
+
Row and Cell Styling
+ Certain rows or cells can easily be styled based on conditions. Cell styling is implemented with templating whereas row styling utilizes the rowClass property which takes the
+ row data as a parameter and returns the style class as a string.
+
+
+<DataTable :value="cars" :rowClass="rowClass">
+ <Column field="vin" header="Vin"></Column>
+ <Column field="year" header="Year" bodyStyle="padding: 0">
+ <template #body="slotProps">
+ <div :class="['year-cell', {'old-car': slotProps.data.year < 2010}]">
+ {{slotProps.data.year}}
+ </div>
+ </template>
+ </Column>
+ <Column field="brand" header="Brand"></Column>
+ <Column field="color" header="Color"></Column>
+</DataTable>
+
+
+
+
+import CarService from '../../service/CarService';
+
+export default {
+ data() {
+ return {
+ columns: null,
+ cars: null
+ }
+ },
+ carService: null,
+ created() {
+ this.carService = new CarService();
+ },
+ mounted() {
+ this.carService.getCarsSmall().then(data => this.cars = data);
+ },
+ methods: {
+ rowClass(data) {
+ return data.color === 'Orange' ? 'orange-car': null;
+ }
+ }
+}
+
+
+
+.year-cell {
+ padding: 0.429em 0.857em;
+
+ &.old-car {
+ background-color: #41b783;
+ font-weight: 700;
+ color: #ffffff;
+ }
+}
+
+/deep/ .orange-car {
+ background-color: #344b5f !important;
+ color: #ffffff !important;
+}
+
Properties
@@ -1630,6 +1691,12 @@ export default {
null |
A collection of rows to represent the current editing data in row edit mode. |
+
+ rowClass |
+ function |
+ null |
+ A function that takes the row data and returns a string to apply a particular class for the row. |
+
diff --git a/src/views/datatable/DataTableStyleDemo.vue b/src/views/datatable/DataTableStyleDemo.vue
new file mode 100644
index 000000000..ee6e7cc69
--- /dev/null
+++ b/src/views/datatable/DataTableStyleDemo.vue
@@ -0,0 +1,138 @@
+
+
+
+
+
+
+
DataTable - Style
+
Certain rows or cells can easily be styled based on conditions.
+
+
+
+
+
+
+
+
+
+ {{slotProps.data.year}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+<DataTable :value="cars" :rowClass="rowClass">
+ <Column field="vin" header="Vin"></Column>
+ <Column field="year" header="Year" bodyStyle="padding: 0">
+ <template #body="slotProps">
+ <div :class="['year-cell', {'old-car': slotProps.data.year < 2010}]">
+ {{slotProps.data.year}}
+ </div>
+ </template>
+ </Column>
+ <Column field="brand" header="Brand"></Column>
+ <Column field="color" header="Color"></Column>
+</DataTable>
+
+
+
+
+import CarService from '../../service/CarService';
+
+export default {
+ data() {
+ return {
+ columns: null,
+ cars: null
+ }
+ },
+ carService: null,
+ created() {
+ this.carService = new CarService();
+ },
+ mounted() {
+ this.carService.getCarsSmall().then(data => this.cars = data);
+ },
+ methods: {
+ rowClass(data) {
+ return data.color === 'Orange' ? 'orange-car': null;
+ }
+ }
+}
+
+
+
+.year-cell {
+ padding: 0.429em 0.857em;
+
+ &.old-car {
+ background-color: #41b783;
+ font-weight: 700;
+ color: #ffffff;
+ }
+}
+
+/deep/ .orange-car {
+ background-color: #344b5f !important;
+ color: #ffffff !important;
+}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/datatable/DataTableSubMenu.vue b/src/views/datatable/DataTableSubMenu.vue
index 223b15b41..d9193ac93 100644
--- a/src/views/datatable/DataTableSubMenu.vue
+++ b/src/views/datatable/DataTableSubMenu.vue
@@ -18,6 +18,7 @@
● Responsive
● Export
● State
+ ● Style
● Crud