We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0678989 commit 96f2f8cCopy full SHA for 96f2f8c
app/code/Magento/Backend/view/adminhtml/templates/widget/grid/extended.phtml
@@ -255,6 +255,12 @@ $numColumns = sizeof($block->getColumns());
255
256
deps.push('mage/adminhtml/grid');
257
258
+ <?php if (is_array($block->getRequireJsDependencies())): ?>
259
+ <?php foreach ($block->getRequireJsDependencies() as $dependency): ?>
260
+ deps.push('<?php /* @escapeNotVerified */ echo $dependency; ?>');
261
+ <?php endforeach; ?>
262
+ <?php endif; ?>
263
+
264
require(deps, function(<?php echo ($block->getDependencyJsObject() ? 'registry' : '') ?>){
265
<?php //TODO: getJsObjectName and getRowClickCallback has unexpected behavior. Should be removed ?>
266
0 commit comments