I get an error as “the aggregation node for control 'sap.ui.table.Table' is incorrect”












0















I have just started with learning UI5 coding and I am not a pro in it.



I am trying to add a combo box in my search field to enhance the search option in my application. so I am using the table tag but whenever I try to insert the code;



<t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
< <t:headerToolbar>
<t:toolbar>
<Title text="IDOC Data" level="H1"/>
<t:ToolbarSpacer/>
<ComboBox id="filtercombo">
<core:Item key="Trkorr" text="IDOC Number"/>
<core:Item key="TrType" text="Created ON"/>
<core:Item key="As4text" text="IDOC Type"/>
<core:Item key="" text=""/>
</ComboBox>
<SearchField width="50%" search="onFilter" placeholder="Filter"/>

</t:toolbar>
</t:headerToolbar>


I get error saying:




the aggregation node for control 'sap.ui.table.Table' is incorrect.




Can somebody please help me if I am missing on to something before this.



Thanks,
Chaitali.










share|improve this question





























    0















    I have just started with learning UI5 coding and I am not a pro in it.



    I am trying to add a combo box in my search field to enhance the search option in my application. so I am using the table tag but whenever I try to insert the code;



    <t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
    sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
    < <t:headerToolbar>
    <t:toolbar>
    <Title text="IDOC Data" level="H1"/>
    <t:ToolbarSpacer/>
    <ComboBox id="filtercombo">
    <core:Item key="Trkorr" text="IDOC Number"/>
    <core:Item key="TrType" text="Created ON"/>
    <core:Item key="As4text" text="IDOC Type"/>
    <core:Item key="" text=""/>
    </ComboBox>
    <SearchField width="50%" search="onFilter" placeholder="Filter"/>

    </t:toolbar>
    </t:headerToolbar>


    I get error saying:




    the aggregation node for control 'sap.ui.table.Table' is incorrect.




    Can somebody please help me if I am missing on to something before this.



    Thanks,
    Chaitali.










    share|improve this question



























      0












      0








      0








      I have just started with learning UI5 coding and I am not a pro in it.



      I am trying to add a combo box in my search field to enhance the search option in my application. so I am using the table tag but whenever I try to insert the code;



      <t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
      sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
      < <t:headerToolbar>
      <t:toolbar>
      <Title text="IDOC Data" level="H1"/>
      <t:ToolbarSpacer/>
      <ComboBox id="filtercombo">
      <core:Item key="Trkorr" text="IDOC Number"/>
      <core:Item key="TrType" text="Created ON"/>
      <core:Item key="As4text" text="IDOC Type"/>
      <core:Item key="" text=""/>
      </ComboBox>
      <SearchField width="50%" search="onFilter" placeholder="Filter"/>

      </t:toolbar>
      </t:headerToolbar>


      I get error saying:




      the aggregation node for control 'sap.ui.table.Table' is incorrect.




      Can somebody please help me if I am missing on to something before this.



      Thanks,
      Chaitali.










      share|improve this question
















      I have just started with learning UI5 coding and I am not a pro in it.



      I am trying to add a combo box in my search field to enhance the search option in my application. so I am using the table tag but whenever I try to insert the code;



      <t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
      sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
      < <t:headerToolbar>
      <t:toolbar>
      <Title text="IDOC Data" level="H1"/>
      <t:ToolbarSpacer/>
      <ComboBox id="filtercombo">
      <core:Item key="Trkorr" text="IDOC Number"/>
      <core:Item key="TrType" text="Created ON"/>
      <core:Item key="As4text" text="IDOC Type"/>
      <core:Item key="" text=""/>
      </ComboBox>
      <SearchField width="50%" search="onFilter" placeholder="Filter"/>

      </t:toolbar>
      </t:headerToolbar>


      I get error saying:




      the aggregation node for control 'sap.ui.table.Table' is incorrect.




      Can somebody please help me if I am missing on to something before this.



      Thanks,
      Chaitali.







      sapui5






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 21 '18 at 13:06









      Jaro

      1,58011122




      1,58011122










      asked Nov 20 '18 at 10:49









      ChaitaliChaitali

      1




      1
























          2 Answers
          2






          active

          oldest

          votes


















          1














          You are missing the content aggregation on your toolbar. It should look like this:



          <t:Table id="idoclist" selectionMode="MultiToggle" 
          rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
          sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
          <t:headerToolbar>
          <t:toolbar>
          <content>
          <Title text="IDOC Data" level="H1"/>
          <t:ToolbarSpacer/>
          <ComboBox id="filtercombo">
          <core:Item key="Trkorr" text="IDOC Number"/>
          <core:Item key="TrType" text="Created ON"/>
          <core:Item key="As4text" text="IDOC Type"/>
          <core:Item key="" text=""/>
          </ComboBox>
          <SearchField width="50%" search="onFilter" placeholder="Filter"/>
          </content>
          </t:toolbar>
          </t:headerToolbar>


          The sap.ui.core.Toolbar aggregation is now deprecated as of version 1.38 for sap.ui.table.Table so I would recommend using sap.m.Table on your view to look something like this:



          <Table id="_yourTable">
          <headerToolbar>
          <Toolbar>
          <content>
          <Label text="Toolbar Label"></Label>
          </content>
          </Toolbar>
          </headerToolbar>





          share|improve this answer


























          • There's more going on with this... assuming t: points to sap.ui.table, the toolbar control is sap.ui.table.toolbar which does not exist. there's no headerToolbar aggregation on sap.ui.table.Table but there is on sap.m.Table.

            – Jorg
            Nov 20 '18 at 11:20











          • I see you already noticed, cheers.

            – Jorg
            Nov 20 '18 at 11:21






          • 1





            @Jorg thought the same, just edited my answer. I think sap.m.Table should be used here.

            – Andre F
            Nov 20 '18 at 11:22











          • Or the extension aggregation on sap.ui.table.Table I guess... I'd suggest sap.m.Table too.

            – Jorg
            Nov 20 '18 at 11:23



















          1














          The headerToolbar is not a valid aggregation for sap.ui.table.Table . This means that you cannot use headerToolbar inside Table directly. Your next option would be to use the toolbar aggregation. But this has been deprecated since version 1.38 .(Refer this document to know more about sap.ui.table.Table)



          So you can use the extension aggregation to include your toolbar. I have modified your table with sap.m.Toolbar.



          <t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
          sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
          <t:extension>
          <Toolbar>
          <Title text="IDOC Data" level="H1"/>
          <ToolbarSpacer/>
          <ComboBox id="filtercombo">
          <core:Item key="Trkorr" text="IDOC Number"/>
          <core:Item key="TrType" text="Created ON"/>
          <core:Item key="As4text" text="IDOC Type"/>
          <core:Item key="" text=""/>
          </ComboBox>
          <SearchField width="50%" search="onFilter" placeholder="Filter"/>
          </Toolbar>
          </t:extension>
          </t:Table>





          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53391346%2fi-get-an-error-as-the-aggregation-node-for-control-sap-ui-table-table-is-inco%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            You are missing the content aggregation on your toolbar. It should look like this:



            <t:Table id="idoclist" selectionMode="MultiToggle" 
            rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
            sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
            <t:headerToolbar>
            <t:toolbar>
            <content>
            <Title text="IDOC Data" level="H1"/>
            <t:ToolbarSpacer/>
            <ComboBox id="filtercombo">
            <core:Item key="Trkorr" text="IDOC Number"/>
            <core:Item key="TrType" text="Created ON"/>
            <core:Item key="As4text" text="IDOC Type"/>
            <core:Item key="" text=""/>
            </ComboBox>
            <SearchField width="50%" search="onFilter" placeholder="Filter"/>
            </content>
            </t:toolbar>
            </t:headerToolbar>


            The sap.ui.core.Toolbar aggregation is now deprecated as of version 1.38 for sap.ui.table.Table so I would recommend using sap.m.Table on your view to look something like this:



            <Table id="_yourTable">
            <headerToolbar>
            <Toolbar>
            <content>
            <Label text="Toolbar Label"></Label>
            </content>
            </Toolbar>
            </headerToolbar>





            share|improve this answer


























            • There's more going on with this... assuming t: points to sap.ui.table, the toolbar control is sap.ui.table.toolbar which does not exist. there's no headerToolbar aggregation on sap.ui.table.Table but there is on sap.m.Table.

              – Jorg
              Nov 20 '18 at 11:20











            • I see you already noticed, cheers.

              – Jorg
              Nov 20 '18 at 11:21






            • 1





              @Jorg thought the same, just edited my answer. I think sap.m.Table should be used here.

              – Andre F
              Nov 20 '18 at 11:22











            • Or the extension aggregation on sap.ui.table.Table I guess... I'd suggest sap.m.Table too.

              – Jorg
              Nov 20 '18 at 11:23
















            1














            You are missing the content aggregation on your toolbar. It should look like this:



            <t:Table id="idoclist" selectionMode="MultiToggle" 
            rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
            sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
            <t:headerToolbar>
            <t:toolbar>
            <content>
            <Title text="IDOC Data" level="H1"/>
            <t:ToolbarSpacer/>
            <ComboBox id="filtercombo">
            <core:Item key="Trkorr" text="IDOC Number"/>
            <core:Item key="TrType" text="Created ON"/>
            <core:Item key="As4text" text="IDOC Type"/>
            <core:Item key="" text=""/>
            </ComboBox>
            <SearchField width="50%" search="onFilter" placeholder="Filter"/>
            </content>
            </t:toolbar>
            </t:headerToolbar>


            The sap.ui.core.Toolbar aggregation is now deprecated as of version 1.38 for sap.ui.table.Table so I would recommend using sap.m.Table on your view to look something like this:



            <Table id="_yourTable">
            <headerToolbar>
            <Toolbar>
            <content>
            <Label text="Toolbar Label"></Label>
            </content>
            </Toolbar>
            </headerToolbar>





            share|improve this answer


























            • There's more going on with this... assuming t: points to sap.ui.table, the toolbar control is sap.ui.table.toolbar which does not exist. there's no headerToolbar aggregation on sap.ui.table.Table but there is on sap.m.Table.

              – Jorg
              Nov 20 '18 at 11:20











            • I see you already noticed, cheers.

              – Jorg
              Nov 20 '18 at 11:21






            • 1





              @Jorg thought the same, just edited my answer. I think sap.m.Table should be used here.

              – Andre F
              Nov 20 '18 at 11:22











            • Or the extension aggregation on sap.ui.table.Table I guess... I'd suggest sap.m.Table too.

              – Jorg
              Nov 20 '18 at 11:23














            1












            1








            1







            You are missing the content aggregation on your toolbar. It should look like this:



            <t:Table id="idoclist" selectionMode="MultiToggle" 
            rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
            sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
            <t:headerToolbar>
            <t:toolbar>
            <content>
            <Title text="IDOC Data" level="H1"/>
            <t:ToolbarSpacer/>
            <ComboBox id="filtercombo">
            <core:Item key="Trkorr" text="IDOC Number"/>
            <core:Item key="TrType" text="Created ON"/>
            <core:Item key="As4text" text="IDOC Type"/>
            <core:Item key="" text=""/>
            </ComboBox>
            <SearchField width="50%" search="onFilter" placeholder="Filter"/>
            </content>
            </t:toolbar>
            </t:headerToolbar>


            The sap.ui.core.Toolbar aggregation is now deprecated as of version 1.38 for sap.ui.table.Table so I would recommend using sap.m.Table on your view to look something like this:



            <Table id="_yourTable">
            <headerToolbar>
            <Toolbar>
            <content>
            <Label text="Toolbar Label"></Label>
            </content>
            </Toolbar>
            </headerToolbar>





            share|improve this answer















            You are missing the content aggregation on your toolbar. It should look like this:



            <t:Table id="idoclist" selectionMode="MultiToggle" 
            rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
            sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
            <t:headerToolbar>
            <t:toolbar>
            <content>
            <Title text="IDOC Data" level="H1"/>
            <t:ToolbarSpacer/>
            <ComboBox id="filtercombo">
            <core:Item key="Trkorr" text="IDOC Number"/>
            <core:Item key="TrType" text="Created ON"/>
            <core:Item key="As4text" text="IDOC Type"/>
            <core:Item key="" text=""/>
            </ComboBox>
            <SearchField width="50%" search="onFilter" placeholder="Filter"/>
            </content>
            </t:toolbar>
            </t:headerToolbar>


            The sap.ui.core.Toolbar aggregation is now deprecated as of version 1.38 for sap.ui.table.Table so I would recommend using sap.m.Table on your view to look something like this:



            <Table id="_yourTable">
            <headerToolbar>
            <Toolbar>
            <content>
            <Label text="Toolbar Label"></Label>
            </content>
            </Toolbar>
            </headerToolbar>






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 20 '18 at 11:20

























            answered Nov 20 '18 at 11:12









            Andre FAndre F

            296213




            296213













            • There's more going on with this... assuming t: points to sap.ui.table, the toolbar control is sap.ui.table.toolbar which does not exist. there's no headerToolbar aggregation on sap.ui.table.Table but there is on sap.m.Table.

              – Jorg
              Nov 20 '18 at 11:20











            • I see you already noticed, cheers.

              – Jorg
              Nov 20 '18 at 11:21






            • 1





              @Jorg thought the same, just edited my answer. I think sap.m.Table should be used here.

              – Andre F
              Nov 20 '18 at 11:22











            • Or the extension aggregation on sap.ui.table.Table I guess... I'd suggest sap.m.Table too.

              – Jorg
              Nov 20 '18 at 11:23



















            • There's more going on with this... assuming t: points to sap.ui.table, the toolbar control is sap.ui.table.toolbar which does not exist. there's no headerToolbar aggregation on sap.ui.table.Table but there is on sap.m.Table.

              – Jorg
              Nov 20 '18 at 11:20











            • I see you already noticed, cheers.

              – Jorg
              Nov 20 '18 at 11:21






            • 1





              @Jorg thought the same, just edited my answer. I think sap.m.Table should be used here.

              – Andre F
              Nov 20 '18 at 11:22











            • Or the extension aggregation on sap.ui.table.Table I guess... I'd suggest sap.m.Table too.

              – Jorg
              Nov 20 '18 at 11:23

















            There's more going on with this... assuming t: points to sap.ui.table, the toolbar control is sap.ui.table.toolbar which does not exist. there's no headerToolbar aggregation on sap.ui.table.Table but there is on sap.m.Table.

            – Jorg
            Nov 20 '18 at 11:20





            There's more going on with this... assuming t: points to sap.ui.table, the toolbar control is sap.ui.table.toolbar which does not exist. there's no headerToolbar aggregation on sap.ui.table.Table but there is on sap.m.Table.

            – Jorg
            Nov 20 '18 at 11:20













            I see you already noticed, cheers.

            – Jorg
            Nov 20 '18 at 11:21





            I see you already noticed, cheers.

            – Jorg
            Nov 20 '18 at 11:21




            1




            1





            @Jorg thought the same, just edited my answer. I think sap.m.Table should be used here.

            – Andre F
            Nov 20 '18 at 11:22





            @Jorg thought the same, just edited my answer. I think sap.m.Table should be used here.

            – Andre F
            Nov 20 '18 at 11:22













            Or the extension aggregation on sap.ui.table.Table I guess... I'd suggest sap.m.Table too.

            – Jorg
            Nov 20 '18 at 11:23





            Or the extension aggregation on sap.ui.table.Table I guess... I'd suggest sap.m.Table too.

            – Jorg
            Nov 20 '18 at 11:23













            1














            The headerToolbar is not a valid aggregation for sap.ui.table.Table . This means that you cannot use headerToolbar inside Table directly. Your next option would be to use the toolbar aggregation. But this has been deprecated since version 1.38 .(Refer this document to know more about sap.ui.table.Table)



            So you can use the extension aggregation to include your toolbar. I have modified your table with sap.m.Toolbar.



            <t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
            sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
            <t:extension>
            <Toolbar>
            <Title text="IDOC Data" level="H1"/>
            <ToolbarSpacer/>
            <ComboBox id="filtercombo">
            <core:Item key="Trkorr" text="IDOC Number"/>
            <core:Item key="TrType" text="Created ON"/>
            <core:Item key="As4text" text="IDOC Type"/>
            <core:Item key="" text=""/>
            </ComboBox>
            <SearchField width="50%" search="onFilter" placeholder="Filter"/>
            </Toolbar>
            </t:extension>
            </t:Table>





            share|improve this answer




























              1














              The headerToolbar is not a valid aggregation for sap.ui.table.Table . This means that you cannot use headerToolbar inside Table directly. Your next option would be to use the toolbar aggregation. But this has been deprecated since version 1.38 .(Refer this document to know more about sap.ui.table.Table)



              So you can use the extension aggregation to include your toolbar. I have modified your table with sap.m.Toolbar.



              <t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
              sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
              <t:extension>
              <Toolbar>
              <Title text="IDOC Data" level="H1"/>
              <ToolbarSpacer/>
              <ComboBox id="filtercombo">
              <core:Item key="Trkorr" text="IDOC Number"/>
              <core:Item key="TrType" text="Created ON"/>
              <core:Item key="As4text" text="IDOC Type"/>
              <core:Item key="" text=""/>
              </ComboBox>
              <SearchField width="50%" search="onFilter" placeholder="Filter"/>
              </Toolbar>
              </t:extension>
              </t:Table>





              share|improve this answer


























                1












                1








                1







                The headerToolbar is not a valid aggregation for sap.ui.table.Table . This means that you cannot use headerToolbar inside Table directly. Your next option would be to use the toolbar aggregation. But this has been deprecated since version 1.38 .(Refer this document to know more about sap.ui.table.Table)



                So you can use the extension aggregation to include your toolbar. I have modified your table with sap.m.Toolbar.



                <t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
                sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
                <t:extension>
                <Toolbar>
                <Title text="IDOC Data" level="H1"/>
                <ToolbarSpacer/>
                <ComboBox id="filtercombo">
                <core:Item key="Trkorr" text="IDOC Number"/>
                <core:Item key="TrType" text="Created ON"/>
                <core:Item key="As4text" text="IDOC Type"/>
                <core:Item key="" text=""/>
                </ComboBox>
                <SearchField width="50%" search="onFilter" placeholder="Filter"/>
                </Toolbar>
                </t:extension>
                </t:Table>





                share|improve this answer













                The headerToolbar is not a valid aggregation for sap.ui.table.Table . This means that you cannot use headerToolbar inside Table directly. Your next option would be to use the toolbar aggregation. But this has been deprecated since version 1.38 .(Refer this document to know more about sap.ui.table.Table)



                So you can use the extension aggregation to include your toolbar. I have modified your table with sap.m.Toolbar.



                <t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
                sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
                <t:extension>
                <Toolbar>
                <Title text="IDOC Data" level="H1"/>
                <ToolbarSpacer/>
                <ComboBox id="filtercombo">
                <core:Item key="Trkorr" text="IDOC Number"/>
                <core:Item key="TrType" text="Created ON"/>
                <core:Item key="As4text" text="IDOC Type"/>
                <core:Item key="" text=""/>
                </ComboBox>
                <SearchField width="50%" search="onFilter" placeholder="Filter"/>
                </Toolbar>
                </t:extension>
                </t:Table>






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 20 '18 at 11:50









                d01ph1nd01ph1n

                1115




                1115






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53391346%2fi-get-an-error-as-the-aggregation-node-for-control-sap-ui-table-table-is-inco%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    這個網誌中的熱門文章

                    Tangent Lines Diagram Along Smooth Curve

                    Yusuf al-Mu'taman ibn Hud

                    Zucchini