在运行时创建或添加部分内容
create or add section content at runtime
我想在运行时添加/创建部分内容。我看到了来自 tour de jewel mainContent.mxml 的示例,但似乎所有部分内容都是在应用程序启动时加载的。
我只想在需要时加载部分内容,而不是在应用程序启动时加载。
因此,当个别版块内容有更新时,我们不需要刷新浏览器。
<j:ApplicationMainContent localId="main" hasTopAppBar="true" hasFooterBar="true" selectedContent = "welcome_panel">
<local:WelcomeSection name="welcome_panel"/>
<local:AlertPlayGround name="alert_panel"/>
<local:ButtonPlayGround name="button_panel"/>
<local:ImagePlayGround name="image_panel"/>
<local:NumericStepperPlayGround name="numericstepper_panel"/>
<local:DateComponentsPlayGround name="datecomponents_panel"/>
<local:ComboBoxPlayGround name="combobox_panel"/>
<local:CheckBoxPlayGround name="checkbox_panel"/>
<local:MiscelaneaPlayGound name="miscelanea_panel"/>
<local:HeadingsAndText name="text_panel"/>
<local:LabelPlayGround name="label_panel"/>
<local:ListPlayGround name="list_panel"/>
<local:RadioButtonPlayGround name="radiobutton_panel"/>
<local:SliderPlayGround name="slider_panel"/>
<local:TextInputPlayGround name="textinput_panel"/>
<local:GridPlayGround name="grid_panel"/>
<local:CardPlayGround name="card_panel"/>
<local:TablePlayGround name="tables_panel"/>
<local:FormsValidationPlayGround name="form_validation_panel"/>
<local:DropDownListPlayGround name="dropdownlist_panel"/>
<local:SnackbarPlayGround name="snackbar_panel"/>
<local:TabBarPlayGround name="tabbar_panel"/>
<local:ViewStatesPlayGround name="viewstates_panel"/>
<local:LayoutsPlayGround name="layouts_panel"/>
<local:WizardPlayGround name="wizards_panel"/>
<local:PopUpPlayGround name="popup_panel"/>
</j:ApplicationMainContent>
请帮忙
假设您没有在 mxml 中声明按钮面板。您可以使用以下代码创建它:
// This creates the ButtonPlayGround view
var bp:ButtonPlayGround = new ButtonPlayGround();
// then we need to assign the name
bp.name = "button_panel";
// finally you need to add to the ApplicationMainContent container
main.addElement(bp);
现在,当您尝试显示该视图时,您就会得到它。
我想在运行时添加/创建部分内容。我看到了来自 tour de jewel mainContent.mxml 的示例,但似乎所有部分内容都是在应用程序启动时加载的。
我只想在需要时加载部分内容,而不是在应用程序启动时加载。
因此,当个别版块内容有更新时,我们不需要刷新浏览器。
<j:ApplicationMainContent localId="main" hasTopAppBar="true" hasFooterBar="true" selectedContent = "welcome_panel">
<local:WelcomeSection name="welcome_panel"/>
<local:AlertPlayGround name="alert_panel"/>
<local:ButtonPlayGround name="button_panel"/>
<local:ImagePlayGround name="image_panel"/>
<local:NumericStepperPlayGround name="numericstepper_panel"/>
<local:DateComponentsPlayGround name="datecomponents_panel"/>
<local:ComboBoxPlayGround name="combobox_panel"/>
<local:CheckBoxPlayGround name="checkbox_panel"/>
<local:MiscelaneaPlayGound name="miscelanea_panel"/>
<local:HeadingsAndText name="text_panel"/>
<local:LabelPlayGround name="label_panel"/>
<local:ListPlayGround name="list_panel"/>
<local:RadioButtonPlayGround name="radiobutton_panel"/>
<local:SliderPlayGround name="slider_panel"/>
<local:TextInputPlayGround name="textinput_panel"/>
<local:GridPlayGround name="grid_panel"/>
<local:CardPlayGround name="card_panel"/>
<local:TablePlayGround name="tables_panel"/>
<local:FormsValidationPlayGround name="form_validation_panel"/>
<local:DropDownListPlayGround name="dropdownlist_panel"/>
<local:SnackbarPlayGround name="snackbar_panel"/>
<local:TabBarPlayGround name="tabbar_panel"/>
<local:ViewStatesPlayGround name="viewstates_panel"/>
<local:LayoutsPlayGround name="layouts_panel"/>
<local:WizardPlayGround name="wizards_panel"/>
<local:PopUpPlayGround name="popup_panel"/>
</j:ApplicationMainContent>
请帮忙
假设您没有在 mxml 中声明按钮面板。您可以使用以下代码创建它:
// This creates the ButtonPlayGround view
var bp:ButtonPlayGround = new ButtonPlayGround();
// then we need to assign the name
bp.name = "button_panel";
// finally you need to add to the ApplicationMainContent container
main.addElement(bp);
现在,当您尝试显示该视图时,您就会得到它。