Search found 7 matches

by Skippdog
Fri Feb 08, 2008 8:53 pm
Forum: Joombie Coding Q/A
Topic: I have NO IDEA what I am doing
Replies: 1
Views: 398

Re: I have NO IDEA what I am doing

/templates/Aqualine/css/noir.css I would guess is where the css file is.

/templates/Aqualine/index.php is the template
by Skippdog
Fri Feb 08, 2008 8:29 pm
Forum: Joombie Coding Q/A
Topic: Component-wide template with MVC
Replies: 1
Views: 366

Component-wide template with MVC

Hi all,

I'm writing a component with several views, but there are several UI elements that are common to all the views. Instead of copying the code into the template of every view, is there a way to make a global template which then will inherit the templates of the view?

Cheers
by Skippdog
Tue Feb 05, 2008 4:43 pm
Forum: Joomla! Coding 101
Topic: General Joomla php include question
Replies: 12
Views: 1662

Re: General Joomla php include question

You might also use format=raw so that you don't get any extra HTML around your component. Ian The only problem with that is that you need to develop a raw view for the component and most (or all the ones I've seen at least) of the core or community components don't have a raw view implemented. If h...
by Skippdog
Mon Feb 04, 2008 9:43 pm
Forum: Joomla! Coding 101
Topic: General Joomla php include question
Replies: 12
Views: 1662

Re: General Joomla php include question

You can't call the php file of the component directly. Your AJAX call will be to index.php?option=com_[yourcomponent]&tmpl=component

This calls the component properly through the framework, and returns just the data you need to update your module.
by Skippdog
Mon Feb 04, 2008 2:39 am
Forum: Joomla! Coding 101
Topic: Mootools not getting included in head under custom component
Replies: 2
Views: 531

Re: Mootools not getting included in head under custom component

Yup, that covered it!

I didn't realize that you had to request mootools be included via the code. Added that line and I'm off to the races.

Cheers!
by Skippdog
Sun Feb 03, 2008 11:56 pm
Forum: Joomla! Coding 101
Topic: General Joomla php include question
Replies: 12
Views: 1662

Re: General Joomla php include question

Create a simple component to support your module that will handle the ajax request. Ian Hi Ian, could you be pls more specific, what do you mean? It's not clear, why should I mix here with component .. Thx Components can be called "raw" from the query string to render without any of the site templa...
by Skippdog
Sun Feb 03, 2008 11:39 pm
Forum: Joomla! Coding 101
Topic: Mootools not getting included in head under custom component
Replies: 2
Views: 531

Mootools not getting included in head under custom component

What determines whether or not mootools gets included or not? I poked around in the database, checked parameters and such, but can't determine how Joomla determines whether to include mootools or not on the page.

Any help?