2

Basically, I want to know the flow of execution how UI component render?

ASQ
  • 1,052
  • 7
  • 16
usman
  • 440
  • 5
  • 19
  • Please follow below link for detailed Ui component flow in Magento 2 https://magento.stackexchange.com/questions/97291/explanation-of-ui-component-grid-in-magento-2 – Muzammal Hassan Aug 09 '19 at 12:00
  • I have gone through it and here the explanation of UI component is available.But i want to know the flow which tag compile first like data source,argument etc. – usman Aug 09 '19 at 12:08

1 Answers1

3

For Ui-Form

<form> -> <datasource> -> <fieldset> -> <field> 

For Ui-listing

<listing> -> <datasource> -> <listingtoolbar> -> <columns> -> <column>

this is the flow of loading UI components tags.

ASQ
  • 1,052
  • 7
  • 16