```Layout.on('afterShowContent'), function () { ...
# suitecommerce
s
Copy code
Layout.on('afterShowContent'), function ()
{
  Layout.addChildView(...etc...)
});
a
@Steve Goldberg we tried this solution but it is not showing to custom created view and even not showing for oob data-view also eg: 'Header.Logo'
s
OK then I don't think what you're trying to do is achievable the way you are doing it
it might be achievable with CCTs and/or page types
a
can you please lead me to a blog of yours that might help me in this. appreciate the help 🙂
s
I mean, this isn't really a scenario I would have envisioned. If you want to create a page as part of your extension, then just use standard Backbone. If you want to add custom content to CMS landing page, then you need to use a CCT. Is there some specific reason why you're doing it this way?
a
i just want to create a new landing page altogether and create a view for it via an extension
s
OK, if you don't need to use the site management tools for any specific reason (eg non-technical person managing it, use CCTs, etc) then I would just use a standard Backbone router to generate the page
a
okay thank you i'll try this 🙂