DevExtreme 中的组件嵌套 jquery
Component nesting in DevExtreme jquery
求助,我在学习DevExpress,有些东西看不懂。如何嵌套组件?例如,使其中一项中的 dxAccordion 包含多一个 dxAccordion。我看到它是这样写的:widget: 'dxAccordion' 然后嵌套组件将在呈现父级时成为手风琴。但它不起作用。
它应该看起来像这样:
const items = [
{widget:'dxButton', options:{text:'Button'}},
{widget:'dxCalendar', options:{firstDayOfWeek:1}}
];
$('dx-acc').dxAccordion({
dataSource: items
})
而且我希望按钮和日历自动添加到手风琴中
您需要使用项目模板。请参考this documentation topic. There is also a corresponding demo.
求助,我在学习DevExpress,有些东西看不懂。如何嵌套组件?例如,使其中一项中的 dxAccordion 包含多一个 dxAccordion。我看到它是这样写的:widget: 'dxAccordion' 然后嵌套组件将在呈现父级时成为手风琴。但它不起作用。 它应该看起来像这样:
const items = [
{widget:'dxButton', options:{text:'Button'}},
{widget:'dxCalendar', options:{firstDayOfWeek:1}}
];
$('dx-acc').dxAccordion({
dataSource: items
})
而且我希望按钮和日历自动添加到手风琴中
您需要使用项目模板。请参考this documentation topic. There is also a corresponding demo.