Skip to content

Commit b306789

Browse files
pomahtriGoodDayForSurf
authored andcommitted
CardView - Simple Array - fix menuMeta & column names (DevExpress#29928)
1 parent cc88775 commit b306789

8 files changed

Lines changed: 5 additions & 5 deletions

File tree

apps/demos/Demos/CardView/SimpleArray/Angular/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if (window && window.config?.packageConfigPaths) {
2222
export class AppComponent {
2323
customers: Customer[];
2424

25-
columns = ['CompanyName', 'City', 'State', 'Phone', 'Fax'];
25+
columns = ['CompanyName', 'Address', 'City', 'State', 'Zipcode', 'Phone'];
2626

2727
constructor(service: Service) {
2828
this.customers = service.getCustomers();

apps/demos/Demos/CardView/SimpleArray/React/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import CardView, { Column } from 'devextreme-react/card-view';
33
import { customers } from './data.ts';
44

5-
const columns = ['CompanyName', 'City', 'State', 'Phone', 'Fax'];
5+
const columns = ['CompanyName', 'Address', 'City', 'State', 'Zipcode', 'Phone'];
66

77
const App = () => (
88
<CardView

apps/demos/Demos/CardView/SimpleArray/ReactJs/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import CardView, { Column } from 'devextreme-react/card-view';
33
import { customers } from './data.js';
44

5-
const columns = ['CompanyName', 'City', 'State', 'Phone', 'Fax'];
5+
const columns = ['CompanyName', 'Address', 'City', 'State', 'Zipcode', 'Phone'];
66
const App = () => (
77
<CardView
88
dataSource={customers}

apps/demos/Demos/CardView/SimpleArray/Vue/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
import { DxCardView, DxColumn } from 'devextreme-vue/card-view';
1414
import { customers } from './data.ts';
1515
16-
const columns = ['CompanyName', 'City', 'State', 'Phone', 'Fax'];
16+
const columns = ['CompanyName', 'Address', 'City', 'State', 'Zipcode', 'Phone'];
1717
</script>

apps/demos/Demos/CardView/SimpleArray/jQuery/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ $(() => {
22
$('#card-view').dxCardView({
33
dataSource: customers,
44
keyExpr: 'ID',
5-
columns: ['CompanyName', 'City', 'State', 'Phone', 'Fax'],
5+
columns: ['CompanyName', 'Address', 'City', 'State', 'Zipcode', 'Phone'],
66
});
77
});
20 KB
Loading
20.3 KB
Loading
19.9 KB
Loading

0 commit comments

Comments
 (0)