UIComponent Form - Spinner showingRight way to create butons in uiComponent form in Magento 2uiComponent Form. How to show data from DB tableuiComponent Form Save Button Not workinguicomponent form add new button for modalUI Component - Only a spinner showingAdminhtml Grid giving error Magento 2Submit Form Button uiComponent Magento2Magento 2 Form UiComponent Explainationhow to create city state country dropdown UIComponent in magento 2 admin formMagento2.3 : How do I programmatically submit a form generated via a UIComponent?
Alternatives to using writing paper for writing practice
Can a pizza stone be fixed after soap has been used to clean it?
Redox reactions redefined
Does ability to impeach an expert witness on science or scholarship go too far?
Basic example of a formal affine scheme, functorial point of view
How are "soeben" and "eben" different from one another?
Did the Shuttle's rudder or elevons operate when flown on its carrier 747?
What is the German equivalent of 干物女 (dried fish woman)?
GPIO and Python - GPIO.output() not working
Align by center of symbol
Does entangle require vegetation?
Why are Japanese translated subtitles non-conversational?
Filtering fine silt/mud from water (not necessarily bacteria etc.)
Could the crash sites of the Apollo 11 and 16 LMs be seen by the LRO?
What exactly is the Tension force?
How would someone destroy a black hole that’s at the centre of a planet?
School House Points (Python + SQLite)
Why is "dark" an adverb in this sentence?
3D-Plot with an inequality condition for parameter values
HackerRank: Electronics Shop
What is the English equivalent of 干物女 (dried fish woman)?
Why do they not say "The Baby"
Why do legislative committees exist?
Can I activate an iPhone without an Apple ID?
UIComponent Form - Spinner showing
Right way to create butons in uiComponent form in Magento 2uiComponent Form. How to show data from DB tableuiComponent Form Save Button Not workinguicomponent form add new button for modalUI Component - Only a spinner showingAdminhtml Grid giving error Magento 2Submit Form Button uiComponent Magento2Magento 2 Form UiComponent Explainationhow to create city state country dropdown UIComponent in magento 2 admin formMagento2.3 : How do I programmatically submit a form generated via a UIComponent?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
In my Form UIComponent only a spinner is showing. I compared my implementation to several ways it is implemented. The grid is showing just fine, i only have the problem in the form.
My layout file:
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="content">
<uiComponent name="offertool_offer_form"/>
</referenceContainer>
</body>
</page>
My offertool_offer_form.xml:
<?xml version="1.0"?>
<form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<argument name="data" xsi:type="array">
<item name="js_config" xsi:type="array">
<item name="provider" xsi:type="string">remklov_offertool_form.offer_form_data_source</item>
<item name="deps" xsi:type="string">remklov_offertool_form.offer_form_data_source</item>
</item>
<item name="label" translate="true" xsi:type="string">General Information</item>
<item name="config" xsi:type="array">
<item name="dataScope" xsi:type="string">data</item>
<item name="namespace" xsi:type="string">offertool_offer_form</item>
</item>
<item name="template" xsi:type="string">templates/form/collapsible</item>
</argument>
<dataSource name="offer_form_data_source">
<argument name="dataProvider" xsi:type="configurableObject">
<argument name="class" xsi:type="string">RemklovOfferToolUiDataProviderFormOfferDataProvider</argument>
<argument name="name" xsi:type="string">offer_form_data_source</argument>
<argument name="primaryFieldName" xsi:type="string">entity_id</argument>
<argument name="requestFieldName" xsi:type="string">entity_id</argument>
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="submit_url" path="*/*/save" xsi:type="url"/>
</item>
</argument>
</argument>
<argument name="data" xsi:type="array">
<item name="js_config" xsi:type="array">
<item name="component" xsi:type="string">Magento_Ui/js/form/provider</item>
</item>
</argument>
</dataSource>
<fieldset name="General">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="label" xsi:type="string"/>
</item>
</argument>
<field name="quote_id">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="dataType" xsi:type="string">text</item>
<item name="label" translate="true" xsi:type="string">Quote ID</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">Offer</item>
<item name="sortOrder" xsi:type="number">10</item>
<item name="dataScope" xsi:type="string">quote_id</item>
</item>
</argument>
</field>
</fieldset>
</form>
My DataProvider.php
<?php
namespace RemklovOfferToolUiDataProviderForm;
use MagentoFrameworkAppRequestDataPersistorInterface;
use RemklovOfferToolModelResourceModelOfferCollectionFactory;
class OfferDataProvider extends MagentoUiDataProviderAbstractDataProvider
/**
* @var CollectionFactory $collection
*/
protected $collection;
/**
* @var $_loadedData
*/
protected $_loadedData;
public function __construct(
$name,
$primaryFieldName,
$requestFieldName,
CollectionFactory $collectionFactory,
array $meta = [],
array $data = []
)
$this->collection = $collectionFactory->create();
parent::__construct($name, $primaryFieldName, $requestFieldName, $meta, $data);
/**
* Get data
*
* @return array
*/
public function getData()
if (isset($this->_loadedData))
return $this->_loadedData;
$items = $this->collection->getItems();
foreach ($items as $model)
$this->_loadedData[$model->getId()] = $model->getData();
return $this->_loadedData;
My di.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<!-- OFFER DATA PROVIDER -->
<preference for="RemklovOfferToolApiOfferRepositoryInterface" type="RemklovOfferToolModelOfferRepository"/>
<preference for="RemklovOfferToolApiDataOfferInterface" type="RemklovOfferToolModelOffer"/>
<preference for="RemklovOfferToolApiDataOfferSearchResultsInterface" type="MagentoFrameworkApiSearchResults"/>
<type name="RemklovOfferToolModelResourceModelOfferGridCollection">
<arguments>
<argument name="mainTable" xsi:type="string">offer_entity</argument>
<argument name="model" xsi:type="string">MagentoFrameworkViewElementUiComponentDataProviderDocument</argument>
<argument name="resourceModel" xsi:type="string">RemklovOfferToolModelResourceModelOfferGridCollection</argument>
</arguments>
</type>
<type name="MagentoFrameworkViewElementUiComponentDataProviderCollectionFactory">
<arguments>
<argument name="collections" xsi:type="array">
<item name="offer_grid_data_source" xsi:type="string">RemklovOfferToolModelResourceModelOfferGridCollection</item>
</argument>
</arguments>
</type>
</config>
If i print the array of returned data, this is the result:
Array
(
[1] => Array
(
[entity_id] => 1
[previous_id] =>
[increment_id] =>
[quote_id] => 36
[sales_staff_id] => 1
[created_at] => 2019-07-06 14:40:10
[updated_at] => 2019-07-06 14:40:10
)
)
I get no error, and just the page title (and if added the buttons) are shown.
adminhtml uicomponent ui-form crud
add a comment |
In my Form UIComponent only a spinner is showing. I compared my implementation to several ways it is implemented. The grid is showing just fine, i only have the problem in the form.
My layout file:
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="content">
<uiComponent name="offertool_offer_form"/>
</referenceContainer>
</body>
</page>
My offertool_offer_form.xml:
<?xml version="1.0"?>
<form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<argument name="data" xsi:type="array">
<item name="js_config" xsi:type="array">
<item name="provider" xsi:type="string">remklov_offertool_form.offer_form_data_source</item>
<item name="deps" xsi:type="string">remklov_offertool_form.offer_form_data_source</item>
</item>
<item name="label" translate="true" xsi:type="string">General Information</item>
<item name="config" xsi:type="array">
<item name="dataScope" xsi:type="string">data</item>
<item name="namespace" xsi:type="string">offertool_offer_form</item>
</item>
<item name="template" xsi:type="string">templates/form/collapsible</item>
</argument>
<dataSource name="offer_form_data_source">
<argument name="dataProvider" xsi:type="configurableObject">
<argument name="class" xsi:type="string">RemklovOfferToolUiDataProviderFormOfferDataProvider</argument>
<argument name="name" xsi:type="string">offer_form_data_source</argument>
<argument name="primaryFieldName" xsi:type="string">entity_id</argument>
<argument name="requestFieldName" xsi:type="string">entity_id</argument>
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="submit_url" path="*/*/save" xsi:type="url"/>
</item>
</argument>
</argument>
<argument name="data" xsi:type="array">
<item name="js_config" xsi:type="array">
<item name="component" xsi:type="string">Magento_Ui/js/form/provider</item>
</item>
</argument>
</dataSource>
<fieldset name="General">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="label" xsi:type="string"/>
</item>
</argument>
<field name="quote_id">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="dataType" xsi:type="string">text</item>
<item name="label" translate="true" xsi:type="string">Quote ID</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">Offer</item>
<item name="sortOrder" xsi:type="number">10</item>
<item name="dataScope" xsi:type="string">quote_id</item>
</item>
</argument>
</field>
</fieldset>
</form>
My DataProvider.php
<?php
namespace RemklovOfferToolUiDataProviderForm;
use MagentoFrameworkAppRequestDataPersistorInterface;
use RemklovOfferToolModelResourceModelOfferCollectionFactory;
class OfferDataProvider extends MagentoUiDataProviderAbstractDataProvider
/**
* @var CollectionFactory $collection
*/
protected $collection;
/**
* @var $_loadedData
*/
protected $_loadedData;
public function __construct(
$name,
$primaryFieldName,
$requestFieldName,
CollectionFactory $collectionFactory,
array $meta = [],
array $data = []
)
$this->collection = $collectionFactory->create();
parent::__construct($name, $primaryFieldName, $requestFieldName, $meta, $data);
/**
* Get data
*
* @return array
*/
public function getData()
if (isset($this->_loadedData))
return $this->_loadedData;
$items = $this->collection->getItems();
foreach ($items as $model)
$this->_loadedData[$model->getId()] = $model->getData();
return $this->_loadedData;
My di.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<!-- OFFER DATA PROVIDER -->
<preference for="RemklovOfferToolApiOfferRepositoryInterface" type="RemklovOfferToolModelOfferRepository"/>
<preference for="RemklovOfferToolApiDataOfferInterface" type="RemklovOfferToolModelOffer"/>
<preference for="RemklovOfferToolApiDataOfferSearchResultsInterface" type="MagentoFrameworkApiSearchResults"/>
<type name="RemklovOfferToolModelResourceModelOfferGridCollection">
<arguments>
<argument name="mainTable" xsi:type="string">offer_entity</argument>
<argument name="model" xsi:type="string">MagentoFrameworkViewElementUiComponentDataProviderDocument</argument>
<argument name="resourceModel" xsi:type="string">RemklovOfferToolModelResourceModelOfferGridCollection</argument>
</arguments>
</type>
<type name="MagentoFrameworkViewElementUiComponentDataProviderCollectionFactory">
<arguments>
<argument name="collections" xsi:type="array">
<item name="offer_grid_data_source" xsi:type="string">RemklovOfferToolModelResourceModelOfferGridCollection</item>
</argument>
</arguments>
</type>
</config>
If i print the array of returned data, this is the result:
Array
(
[1] => Array
(
[entity_id] => 1
[previous_id] =>
[increment_id] =>
[quote_id] => 36
[sales_staff_id] => 1
[created_at] => 2019-07-06 14:40:10
[updated_at] => 2019-07-06 14:40:10
)
)
I get no error, and just the page title (and if added the buttons) are shown.
adminhtml uicomponent ui-form crud
Show me please di.xml
– Evgeniy Kapelko
Jul 6 at 18:16
I updated my question and added the di.xml
– remklov
Jul 6 at 19:12
add a comment |
In my Form UIComponent only a spinner is showing. I compared my implementation to several ways it is implemented. The grid is showing just fine, i only have the problem in the form.
My layout file:
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="content">
<uiComponent name="offertool_offer_form"/>
</referenceContainer>
</body>
</page>
My offertool_offer_form.xml:
<?xml version="1.0"?>
<form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<argument name="data" xsi:type="array">
<item name="js_config" xsi:type="array">
<item name="provider" xsi:type="string">remklov_offertool_form.offer_form_data_source</item>
<item name="deps" xsi:type="string">remklov_offertool_form.offer_form_data_source</item>
</item>
<item name="label" translate="true" xsi:type="string">General Information</item>
<item name="config" xsi:type="array">
<item name="dataScope" xsi:type="string">data</item>
<item name="namespace" xsi:type="string">offertool_offer_form</item>
</item>
<item name="template" xsi:type="string">templates/form/collapsible</item>
</argument>
<dataSource name="offer_form_data_source">
<argument name="dataProvider" xsi:type="configurableObject">
<argument name="class" xsi:type="string">RemklovOfferToolUiDataProviderFormOfferDataProvider</argument>
<argument name="name" xsi:type="string">offer_form_data_source</argument>
<argument name="primaryFieldName" xsi:type="string">entity_id</argument>
<argument name="requestFieldName" xsi:type="string">entity_id</argument>
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="submit_url" path="*/*/save" xsi:type="url"/>
</item>
</argument>
</argument>
<argument name="data" xsi:type="array">
<item name="js_config" xsi:type="array">
<item name="component" xsi:type="string">Magento_Ui/js/form/provider</item>
</item>
</argument>
</dataSource>
<fieldset name="General">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="label" xsi:type="string"/>
</item>
</argument>
<field name="quote_id">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="dataType" xsi:type="string">text</item>
<item name="label" translate="true" xsi:type="string">Quote ID</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">Offer</item>
<item name="sortOrder" xsi:type="number">10</item>
<item name="dataScope" xsi:type="string">quote_id</item>
</item>
</argument>
</field>
</fieldset>
</form>
My DataProvider.php
<?php
namespace RemklovOfferToolUiDataProviderForm;
use MagentoFrameworkAppRequestDataPersistorInterface;
use RemklovOfferToolModelResourceModelOfferCollectionFactory;
class OfferDataProvider extends MagentoUiDataProviderAbstractDataProvider
/**
* @var CollectionFactory $collection
*/
protected $collection;
/**
* @var $_loadedData
*/
protected $_loadedData;
public function __construct(
$name,
$primaryFieldName,
$requestFieldName,
CollectionFactory $collectionFactory,
array $meta = [],
array $data = []
)
$this->collection = $collectionFactory->create();
parent::__construct($name, $primaryFieldName, $requestFieldName, $meta, $data);
/**
* Get data
*
* @return array
*/
public function getData()
if (isset($this->_loadedData))
return $this->_loadedData;
$items = $this->collection->getItems();
foreach ($items as $model)
$this->_loadedData[$model->getId()] = $model->getData();
return $this->_loadedData;
My di.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<!-- OFFER DATA PROVIDER -->
<preference for="RemklovOfferToolApiOfferRepositoryInterface" type="RemklovOfferToolModelOfferRepository"/>
<preference for="RemklovOfferToolApiDataOfferInterface" type="RemklovOfferToolModelOffer"/>
<preference for="RemklovOfferToolApiDataOfferSearchResultsInterface" type="MagentoFrameworkApiSearchResults"/>
<type name="RemklovOfferToolModelResourceModelOfferGridCollection">
<arguments>
<argument name="mainTable" xsi:type="string">offer_entity</argument>
<argument name="model" xsi:type="string">MagentoFrameworkViewElementUiComponentDataProviderDocument</argument>
<argument name="resourceModel" xsi:type="string">RemklovOfferToolModelResourceModelOfferGridCollection</argument>
</arguments>
</type>
<type name="MagentoFrameworkViewElementUiComponentDataProviderCollectionFactory">
<arguments>
<argument name="collections" xsi:type="array">
<item name="offer_grid_data_source" xsi:type="string">RemklovOfferToolModelResourceModelOfferGridCollection</item>
</argument>
</arguments>
</type>
</config>
If i print the array of returned data, this is the result:
Array
(
[1] => Array
(
[entity_id] => 1
[previous_id] =>
[increment_id] =>
[quote_id] => 36
[sales_staff_id] => 1
[created_at] => 2019-07-06 14:40:10
[updated_at] => 2019-07-06 14:40:10
)
)
I get no error, and just the page title (and if added the buttons) are shown.
adminhtml uicomponent ui-form crud
In my Form UIComponent only a spinner is showing. I compared my implementation to several ways it is implemented. The grid is showing just fine, i only have the problem in the form.
My layout file:
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="content">
<uiComponent name="offertool_offer_form"/>
</referenceContainer>
</body>
</page>
My offertool_offer_form.xml:
<?xml version="1.0"?>
<form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<argument name="data" xsi:type="array">
<item name="js_config" xsi:type="array">
<item name="provider" xsi:type="string">remklov_offertool_form.offer_form_data_source</item>
<item name="deps" xsi:type="string">remklov_offertool_form.offer_form_data_source</item>
</item>
<item name="label" translate="true" xsi:type="string">General Information</item>
<item name="config" xsi:type="array">
<item name="dataScope" xsi:type="string">data</item>
<item name="namespace" xsi:type="string">offertool_offer_form</item>
</item>
<item name="template" xsi:type="string">templates/form/collapsible</item>
</argument>
<dataSource name="offer_form_data_source">
<argument name="dataProvider" xsi:type="configurableObject">
<argument name="class" xsi:type="string">RemklovOfferToolUiDataProviderFormOfferDataProvider</argument>
<argument name="name" xsi:type="string">offer_form_data_source</argument>
<argument name="primaryFieldName" xsi:type="string">entity_id</argument>
<argument name="requestFieldName" xsi:type="string">entity_id</argument>
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="submit_url" path="*/*/save" xsi:type="url"/>
</item>
</argument>
</argument>
<argument name="data" xsi:type="array">
<item name="js_config" xsi:type="array">
<item name="component" xsi:type="string">Magento_Ui/js/form/provider</item>
</item>
</argument>
</dataSource>
<fieldset name="General">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="label" xsi:type="string"/>
</item>
</argument>
<field name="quote_id">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="dataType" xsi:type="string">text</item>
<item name="label" translate="true" xsi:type="string">Quote ID</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">Offer</item>
<item name="sortOrder" xsi:type="number">10</item>
<item name="dataScope" xsi:type="string">quote_id</item>
</item>
</argument>
</field>
</fieldset>
</form>
My DataProvider.php
<?php
namespace RemklovOfferToolUiDataProviderForm;
use MagentoFrameworkAppRequestDataPersistorInterface;
use RemklovOfferToolModelResourceModelOfferCollectionFactory;
class OfferDataProvider extends MagentoUiDataProviderAbstractDataProvider
/**
* @var CollectionFactory $collection
*/
protected $collection;
/**
* @var $_loadedData
*/
protected $_loadedData;
public function __construct(
$name,
$primaryFieldName,
$requestFieldName,
CollectionFactory $collectionFactory,
array $meta = [],
array $data = []
)
$this->collection = $collectionFactory->create();
parent::__construct($name, $primaryFieldName, $requestFieldName, $meta, $data);
/**
* Get data
*
* @return array
*/
public function getData()
if (isset($this->_loadedData))
return $this->_loadedData;
$items = $this->collection->getItems();
foreach ($items as $model)
$this->_loadedData[$model->getId()] = $model->getData();
return $this->_loadedData;
My di.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<!-- OFFER DATA PROVIDER -->
<preference for="RemklovOfferToolApiOfferRepositoryInterface" type="RemklovOfferToolModelOfferRepository"/>
<preference for="RemklovOfferToolApiDataOfferInterface" type="RemklovOfferToolModelOffer"/>
<preference for="RemklovOfferToolApiDataOfferSearchResultsInterface" type="MagentoFrameworkApiSearchResults"/>
<type name="RemklovOfferToolModelResourceModelOfferGridCollection">
<arguments>
<argument name="mainTable" xsi:type="string">offer_entity</argument>
<argument name="model" xsi:type="string">MagentoFrameworkViewElementUiComponentDataProviderDocument</argument>
<argument name="resourceModel" xsi:type="string">RemklovOfferToolModelResourceModelOfferGridCollection</argument>
</arguments>
</type>
<type name="MagentoFrameworkViewElementUiComponentDataProviderCollectionFactory">
<arguments>
<argument name="collections" xsi:type="array">
<item name="offer_grid_data_source" xsi:type="string">RemklovOfferToolModelResourceModelOfferGridCollection</item>
</argument>
</arguments>
</type>
</config>
If i print the array of returned data, this is the result:
Array
(
[1] => Array
(
[entity_id] => 1
[previous_id] =>
[increment_id] =>
[quote_id] => 36
[sales_staff_id] => 1
[created_at] => 2019-07-06 14:40:10
[updated_at] => 2019-07-06 14:40:10
)
)
I get no error, and just the page title (and if added the buttons) are shown.
adminhtml uicomponent ui-form crud
adminhtml uicomponent ui-form crud
edited Jul 6 at 19:12
remklov
asked Jul 6 at 17:33
remklovremklov
1981 silver badge9 bronze badges
1981 silver badge9 bronze badges
Show me please di.xml
– Evgeniy Kapelko
Jul 6 at 18:16
I updated my question and added the di.xml
– remklov
Jul 6 at 19:12
add a comment |
Show me please di.xml
– Evgeniy Kapelko
Jul 6 at 18:16
I updated my question and added the di.xml
– remklov
Jul 6 at 19:12
Show me please di.xml
– Evgeniy Kapelko
Jul 6 at 18:16
Show me please di.xml
– Evgeniy Kapelko
Jul 6 at 18:16
I updated my question and added the di.xml
– remklov
Jul 6 at 19:12
I updated my question and added the di.xml
– remklov
Jul 6 at 19:12
add a comment |
1 Answer
1
active
oldest
votes
Change these nodes (provider, deps )to this format: file_name.file_name_data_source.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f281052%2fuicomponent-form-spinner-showing%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Change these nodes (provider, deps )to this format: file_name.file_name_data_source.
add a comment |
Change these nodes (provider, deps )to this format: file_name.file_name_data_source.
add a comment |
Change these nodes (provider, deps )to this format: file_name.file_name_data_source.
Change these nodes (provider, deps )to this format: file_name.file_name_data_source.
answered Jul 6 at 21:48
Evgeniy KapelkoEvgeniy Kapelko
1,3321 gold badge3 silver badges19 bronze badges
1,3321 gold badge3 silver badges19 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- 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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f281052%2fuicomponent-form-spinner-showing%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Show me please di.xml
– Evgeniy Kapelko
Jul 6 at 18:16
I updated my question and added the di.xml
– remklov
Jul 6 at 19:12