1

我想弄清楚如何将 DevExtreme 的网格添加到 wordpress。

这是我尝试添加到 wordpress 的示例。

http://js.devexpress.com/Demos/WidgetsGallery/#demo/datagridgridpagingandscrollingpager/generic/light/default

我已经使用 wp_enqueue_script 在 functions.php 文件中添加了脚本,以便加载所有页面。

现在我想弄清楚如何添加数据部分

我现在正试图弄清楚我可以在哪里添加代码、标记和数据。这些部件中的每一个在每次负载上都会有所不同。

有人对我可以把它放在哪里有任何建议吗?

太感谢了!

<div id="gridContainer"></div>


$("#gridContainer").dxDataGrid({
dataSource: customers,
paging: {
    pageSize: 10
},
pager: {
    showPageSizeSelector: true,
    allowedPageSizes: [5, 10, 20]
},
columns: ['CompanyName', 'City', 'State', 'Phone', 'Fax']
});

var customers = [{
"ID": 1,
"CompanyName": "Super Mart of the West",
"Address": "702 SW 8th Street",
"City": "Bentonville",
"State": "Arkansas",
"Zipcode": 72716,
"Phone": "(800) 555-2797",
"Fax": "(800) 555-2171",
"Website": ""
}, {
"ID": 2,
"CompanyName": "Electronics Depot",
"Address": "2455 Paces Ferry Road NW",
"City": "Atlanta",
"State": "Georgia",
"Zipcode": 30339,
"Phone": "(800) 595-3232",
"Fax": "(800) 595-3231",
"Website": ""
}]
4

1 回答 1

0

在我看来,您可能需要自定义帖子类型或自定义字段,以便您输入和管理以下字段:“公司名称”“地址”“城市”“州”“邮政编码”“电话”“传真”“网站”

请参阅http://codex.wordpress.org/Post_Types

除非这些字段与帖子相关联,否则我不知道您如何管理它们,网格或其他!

于 2015-03-05T01:12:16.053 回答