joomla/administrator/components/com_mycomponent/tables/mycomponent.php
joomla/components/com_mycomponent/tables/mycomponent,php
with a "." not a ","! lol. Sorry. Best wises, G.
Generally you just need to put your JTable classes in one location,
and I, by convention, usually put them in the administrator component.
You generally only need to use JTable for data manipulation. You'd
only use that on the frontend if you were doing an edit operation.
It's a fairly heavy class to be using to just "view" a record. If you
are using 1.6, the JTable class is no longer loaded by default as it
is in 1.5 (used to update the session table).
Does that help?
Regards,
Andrew Eddie
http://learn.theartofjoomla.com - training videos for Joomla 1.6 developers
> --
> You received this message because you are subscribed to the Google Groups "Joomla! General Development" group.
> To post to this group, send an email to joomla-de...@googlegroups.com.
> To unsubscribe from this group, send email to joomla-dev-gene...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/joomla-dev-general?hl=en-GB.
>
>
This has me completely baffled because I see no reference in my front-
end code to the back-end joomla/administrator/components/
com_mycomponent/tables/mycomponent,php file. So how does it know it's
there and why can't I put it somewhere else? - i,e. in my front end:-
joomla/components/com_mycomponent/tables/mycomponent,php ?