Issue #3559πŸ’¬ AnsweredOpened June 22, 2021by iabhiyaan0 reactions

Page.getMainComponent().view gives undefined when page is selected

Quick answerby artf

Hi @iabhiyaan, when page:select triggers, iframes inside the canvas are not yet loaded, so you just need to wait once they are loaded before accessing its DOM.

Read full answer below ↓

Question

Hello @artf, I want to get the HTML Element of selected page. But it returns undefined when using following code:

editor.on('page:select', page => {
    page.getMainComponent().view.el.querySelector('section');  // There is section tag inside that page...
});

Answers (3)

artfβ€’ July 21, 2021

Hi @iabhiyaan, when page:select triggers, iframes inside the canvas are not yet loaded, so you just need to wait once they are loaded before accessing its DOM.

editor.on('page:select', page => {
  const frame = page.getMainFrame();
  frame.once('loaded', () => {
    const rootEl = frame.getComponent().getEl();
    console.log(rootEl.querySelector('section'));  
  });
});
iabhiyaanβ€’ July 21, 2021

Thankyou @artf.

ClaudeCodeβ€’ May 17, 2026

Thanks for reporting this, @iabhiyaan.

Thanks for sharing your report about page.getMainComponent().view gives undefined when page is selected. To help the team investigate and prioritize this:

Please provide:

  1. A minimal reproducible example (CodeSandbox/JSFiddle)
  2. Your GrapesJS version number
  3. Browser and OS information
  4. Any error messages from the browser console
  5. Steps to reproduce the issue

What helps most:

  • Minimal code example (not your full project)
  • Screen recording or screenshot showing the issue
  • Expected vs actual behavior clearly stated
  • GrapesJS configuration you're using

With these details, the maintainers can identify and prioritize a fix much faster. The GrapesJS team is very responsive to well-documented issues.

Related Questions and Answers

Continue research with similar issue discussions.

Paid Plugins That Match This Issue

Curated by issue keywords and label relevance to help you ship faster.

View all plugins

Loading paid plugin recommendations...

Free option

Check the open-source GrapesJS plugins on GitHub or run a quick search in our free catalog.

Browse free plugins β†’
Premium option

Premium plugins ship with support, regular updates, and production-ready features β€” save days of integration work.

Browse premium plugins β†’

Related tutorials

In-depth guides on the same topic.

All tutorials β†’

Browse Plugin Categories

Jump directly to plugin category pages on the marketplace.