I have view (frontend) in my own component (view.html.php):

class MevViewMev extends JView{
        function display($tpl = null){
                parent::display($tpl);
        }
}

And template:

<?php defined('_JEXEC') or die('Restricted access'); ?>
<div>
ASFADSFDSF
</div>

How to display it without joomla template (head section, styles, etc). I want to call this part of jquery onclick method in the window.

link|improve this question

80% accept rate
feedback

1 Answer

up vote 2 down vote accepted

To display the component only add "tmpl=component" parameter to url. If need to display something besides component's view it can be customized - create "component.php" file in template's root folder and include in it whatever you need. More templates can be done in the same way - create "some_template.php" in template's root folder and add "tmpl=some_template" parameter to url.

link|improve this answer
Thank you! Avesome! – Nips Dec 17 '11 at 16:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.