We have it up and running at Edinboro, if you need some additional help feel
free to contact me: cfalzone@....
--Chris.
--- In dotcms@yahoogroups.com, Maria Ahues Bouza <maria.bouza@...> wrote:
>
> Hi Joel,
>
> You have to first create your account with Google CSE. They will give you an
> account ID.
>
> You need to change this parameter on the dotmarketing-config file on the
> conf/ folder of the plugin and add your account id:
> GOOGLE_CUSTOM_SEARCH_CSEID=
>
> Then you need to deploy the plugin on your site and then you need to create
> a simple widget on your site that calls the macro:
>
> #googleCustomSearch($googleCSKeyword)
>
>
> We have an example in the plugin documentation (inside doc/ folder)
>
> #set($googleCSAutoFilter = false)
> #set($googleCSNumberResults = 10)
> #set($googleCSSourceCode = '/application/velocity/mygoogle_results.vtl')
> #googleCustomSearch("$request.getParameter('keyword')")
>
> The VTL file is found under the static_velocity folder. You need to copy it
> into your website and then add it as the Google Source code if you want to
> modify it.
>
>
> Thanks
> Maria
>
> On Thu, Nov 12, 2009 at 3:04 PM, Joel Goodman
> <joel.goodman@...>wrote:
>
> >
> >
> > Does anyone here have experience implementing the Google Custom Search
> > plugin successfully?
> >
> > I'm not sure I understand the steps involved in getting this up and running
> > - and so far my attempts have all failed.
> >
> > Any tips would be SO helpful, as well as appreciated.
> >
> > Thank you!
> >
> > joel
> >
> > --
> > Joel Goodman (Joel.Goodman@...) || Web Content Coordinator
> > 315 E College Ave | Greenville, IL 62246 | (618) 664-6515 |
> > www.greenville.edu
> > Futuristic • Strategic • Responsibility • Restorative *•* Competition
> >
> >
> >
>
>
>
> --
> Maria Ahues Bouza
> Managing Director, Professional Services
>
> dotCMS
> Main: 305.858.1422
> Direct: 786.594.5272
> Fax: 305.397.1719
> www.dotcms.org
> http://www.twitter.com/dotCMS
> http://www.twitter.com/mabouza
>
> "Packt Publishing 2009 Finalist for Best Other Open Source CMS"
>
> Please consider the planet before printing this email.
>
You have to first create your account with Google CSE. They will give you an account ID.
You need to change this parameter on the dotmarketing-config file on the conf/ folder of the plugin and add your account id: GOOGLE_CUSTOM_SEARCH_CSEID=
Then you need to deploy the plugin on your site and then you need to create a simple widget on your site that calls the macro:
#googleCustomSearch($googleCSKeyword)
We have an example in the plugin documentation (inside doc/ folder)
The VTL file is found under the static_velocity folder. You need to copy it into your website and then add it as the Google Source code if you want to modify it.
Thanks Maria
On Thu, Nov 12, 2009 at 3:04 PM, Joel Goodman <joel.goodman@...> wrote:
Does anyone here have experience implementing the Google Custom Search plugin successfully?
I'm not sure I understand the steps involved in getting this up and running - and so far my attempts have all failed.
Any tips would be SO helpful, as well as appreciated.
Well, you can get the contentlet API from the ContentsWebAPI viewtool. From
there you have access to the check-out/in methods. Though I am not sure that
they work from the front-end, but I don't see why not.
Something like:
#set($cAPI = $contents.getContentletAPI())
#set($con = $cAPI.checkOut($inode, $user.getLoggedInUser($request), true))
$con.setStringProperty('field', 'value')
#set($con = $cAPI.checkOut($con, $user.getLoggedInUser($request), true))
I'd be interested to hear if it actually works from Velocity like that or not.
--Chris.
--- In dotcms@yahoogroups.com, Michael Fienen <mfienen@...> wrote:
>
> So, we have back end editing, front end submissions, but do any of the
viewtools/APIs/Struts actions allow for editing content through a front end
page. Say for example you extend users with a user structure (as opposed to
adding fields to the user profile), and you want to make that available to them
on the front end so they can edit it without going into the back end for
anything. Possible?
>
> MPF
>
> +=============================================
> | Michael Fienen - mfienen@...
> | Web Marketing Manager - Systems Coordinator
> | Pittsburg State University
> | 212 Russ Hall
> | 620.235.6072
> +=============================================
>
We haven't added this functionality to the plugin yet. Right now the only thing you can do is submit content through the frontend.
Thanks
Maria
On Tue, Nov 10, 2009 at 4:42 PM, Michael Fienen <mfienen@...> wrote:
So, we have back end editing, front end submissions, but do any of the viewtools/APIs/Struts actions allow for editing content through a front end page. Say for example you extend users with a user structure (as opposed to adding fields to the user profile), and you want to make that available to them on the front end so they can edit it without going into the back end for anything. Possible?
MPF
+=============================================
| Michael Fienen - mfienen@...
| Web Marketing Manager - Systems Coordinator
| Pittsburg State University
| 212 Russ Hall
| 620.235.6072
+=============================================
-- Maria Ahues Bouza Managing Director, Professional Services
So, we have back end editing, front end submissions, but do any of the
viewtools/APIs/Struts actions allow for editing content through a front end
page. Say for example you extend users with a user structure (as opposed to
adding fields to the user profile), and you want to make that available to them
on the front end so they can edit it without going into the back end for
anything. Possible?
MPF
+=============================================
| Michael Fienen - mfienen@...
| Web Marketing Manager - Systems Coordinator
| Pittsburg State University
| 212 Russ Hall
| 620.235.6072
+=============================================
You can't say "starts with" in a Lucene Query because lucene indexes by tokens.
Anyway, here is how I would do something like that (not tested):
http://pastebin.com/f5dd8a33
Hope it helps,
Chris.
--- In dotcms@yahoogroups.com, "ajwagner777" <aaron.wagner@...> wrote:
>
> To all you wizards out there, and dotMarketing. I have a head scratcher.
>
> I have a structure with our university policies in it, and I am wanting to do
an alphabetical listing of the policies. The thing is that I want to break them
by the first letter. For example, I want to list all of the policies that the
title starts with an A, then a "Back to top" link then all the items that start
with B, and so on.
>
> So here is what I have so far:
>
> <h4><a name="A" id="A"></a>A</h4>
> #set($category = '+text1:A*')
> #set($sort = 'text1 asc')
> #dotParse('/hoop/vtl/hoop-listing.vtl')
> <p><a href="#top">Back to top</a>
>
> (Don't pay attention to the name of the "category" variable, it's just a means
of inserting some query statements into the pull content macro)
>
> So, this has ALMOST the results I was looking for. It's giving me all the
contents that the text1 field has a word that starts with A, anywhere in the
whole field.
>
> In other words, it's giving me policies that START with "A", but also others
that have a word starting with "A". So, for example it's returning "Apple
washing procedures" AND "How to wash apples".
>
> Make sense? Anyone know of a way to accomplish this without returning the
"How to wash apples" result?
>
Hello Barkha,
While doing some search for servlet and plugins in dotCMS yahoo group I found
the following page that has your message related to what I'm looking for.
http://tech.groups.yahoo.com/group/dotcms/message/5483
I'm trying to create another plugin like hello world and name it something else
so that hello world doesn't appear in the url. Could you please guide me through
how you would do that.
Thanks!
Todd,
If you are talking about reports from web forms the data submitted is in the
web_form table. For other reports, like ones you've uploaded, report_assets is
the table you are looking for. The inode field should link back to the inode
table to get you info about the owner and so forth. Not positive on this, but
it may also link back to the file_asset table either directly or through the
tree table somehow.
Hope it helps,
Chris.
--- In dotcms@yahoogroups.com, "Todd Reed" <treed@...> wrote:
>
> In the database, I see a table called report_assets. What table is the
> data stored in? I'm wanting to write an iReport to pull the information
> and format it a particular way, but can't find the data. Any help is
> appreciated.
>
>
>
>
>
> Regards,
>
> Todd
>
>
>
>
>
>
>
> Todd Reed, MBA
>
> AD for Web Services, ITS
>
> Arkansas State University - Jonesboro
>
> ________________________________
>
> Apply now at http://www.astate.edu <http://www.astate.edu>
>
>
>
> Celebrating 100 Years - Embracing Our Past, Imagine Our Future
>
> http://centennial.astate.edu/ <http://centennial.astate.edu/>
>
Here's how I accomplished something like this, which could easily be adapted. Rather than using the Lucene thing (which you notice has problems) I just loop through the whole structure and do my own 'sort'.
You could pass the search-letter as an argument in the URL. Obviously you need to change $content.sortname to whatever you text1 field is. You will notice from this also that I tend to always make a 'sort' field when I am originally designing the structure/csv to anticipate this sort of thing. There are other idiosyncracies in the sorting (like sorting all capital letters separately from lowercase - that is, AbCz sorts to ACbz!)
Looking at the code, I am not sure why I do a double #set [i.e. not #set ($sh=$content.sortname.substring(0,2)) ] - I must have been fooling around with finding the substring process and wasn't sure it would work, nor why I use 2 characters. Perhaps some of my entries had leading spaces. This came from sorting names, so we might have had some d'Agostinos or something.
Also 'A' and 'a' are obviously different. If you need help adapting this, let me know.
On Tue, Nov 10, 2009 at 12:40 PM, ajwagner777 <aaron.wagner@...> wrote:
To all you wizards out there, and dotMarketing. I have a head scratcher.
I have a structure with our university policies in it, and I am wanting to do an alphabetical listing of the policies. The thing is that I want to break them by the first letter. For example, I want to list all of the policies that the title starts with an A, then a "Back to top" link then all the items that start with B, and so on.
(Don't pay attention to the name of the "category" variable, it's just a means of inserting some query statements into the pull content macro)
So, this has ALMOST the results I was looking for. It's giving me all the contents that the text1 field has a word that starts with A, anywhere in the whole field.
In other words, it's giving me policies that START with "A", but also others that have a word starting with "A". So, for example it's returning "Apple washing procedures" AND "How to wash apples".
Make sense? Anyone know of a way to accomplish this without returning the "How to wash apples" result?
To all you wizards out there, and dotMarketing. I have a head scratcher.
I have a structure with our university policies in it, and I am wanting to do an
alphabetical listing of the policies. The thing is that I want to break them by
the first letter. For example, I want to list all of the policies that the
title starts with an A, then a "Back to top" link then all the items that start
with B, and so on.
So here is what I have so far:
<h4><a name="A" id="A"></a>A</h4>
#set($category = '+text1:A*')
#set($sort = 'text1 asc')
#dotParse('/hoop/vtl/hoop-listing.vtl')
<p><a href="#top">Back to top</a>
(Don't pay attention to the name of the "category" variable, it's just a means
of inserting some query statements into the pull content macro)
So, this has ALMOST the results I was looking for. It's giving me all the
contents that the text1 field has a word that starts with A, anywhere in the
whole field.
In other words, it's giving me policies that START with "A", but also others
that have a word starting with "A". So, for example it's returning "Apple
washing procedures" AND "How to wash apples".
Make sense? Anyone know of a way to accomplish this without returning the "How
to wash apples" result?
In the database, I see a table called report_assets. What table
is the data stored in? I’m wanting to write an iReport to pull the
information and format it a particular way, but can’t find the data. Any
help is appreciated.
The Campaign Manager throws me a 500 error when attempting to generate a CSV for campaign stats.
Is there any thorough documentation available for the mailing list CRM? I keep running into these little problems and don't have any sort of resource to turn to beyond the list here.
I've attached the error output if anyone cares to take a stab.
Well that kinda stinks that the categorization isn't instant. :(
Thank you both for your answers & I'll see what I can figure out using the
viewtool. It's bound to lead to more questions since I think I'll be breaking
some new ground for me. :)
I haven't really done anything with viewtools yet so it could be my
--- In dotcms@yahoogroups.com, "Dayton Chan" <dc@...> wrote:
>
> There are a bunch of tag cloud AJAX widgets out there (some even flash-based
and pretty flashy (excuse the pun) that you could use to pass your list of tags
into once you’ve done what Michael suggests below.
>
>
>
> DC
>
>
>
>
>
> From: dotcms@yahoogroups.com [mailto:dotcms@yahoogroups.com] On Behalf Of
Michael Fienen
> Sent: Tuesday, November 10, 2009 7:50 AM
> To: dotcms@yahoogroups.com
> Subject: Re: [dotcms] Tag Cloud Macro question
>
>
>
>
>
> Nope, you're gonna find yourself pretty much out of luck on that. The
tagCloud macro doesn't take any kind of query (probably a JIRA-worthy feature
though) that would allow you to grind down the list more specifically than just
the structure. I'm with you that I wish it did (especially on the calendar,
which lists every tag in the system, regardless of structure).
>
> There is, of course, an alternative. You could write your own viewtool for
it, or you could do it with Velocity. Pull like the first X contentlets from a
structure in a normal pullContent() and make an array of the tags, counting them
as they come up. Then you can build a cloud based on that array manually
wrapping them with spans to change their size. The overhead for that would
likely be determined by the number of contentlets you parse for the cloud.
>
> MPF
>
> +=============================================
> | Michael Fienen - mfienen@...
> | Web Marketing Manager - Systems Coordinator
> | Pittsburg State University
> | 212 Russ Hall
> | 620.235.6072
> +=============================================
>
> ----- Original Message -----
> From: "jodycb" <jbenedict@...>
> To: dotcms@yahoogroups.com
> Sent: Tuesday, November 10, 2009 8:43:58 AM
> Subject: [dotcms] Tag Cloud Macro question
>
>
>
> I've created a structure for FAQ's on our site. The idea is that FAQ's
categorized by various departments will show up on their pages. So only OIT
FAQ's will show up on the OIT FAQ page.
>
> BUT...
>
> I want to use the tag cloud macro.
>
> http://www.dotcms.org/documentation/TagCloud
>
> I don't see any obvious way to say just show tags from the FAQ content that is
categorized OIT.
>
> I see that I can set ignored tags but that will be unwieldy at best, almost to
the point of it being better for me to just make links to the tags I do want to
use on the page instead of using the tag cloud macro.
>
> Any thoughts on an efficient way to do this?
>
From: dotcms@yahoogroups.com
[mailto:dotcms@yahoogroups.com] On Behalf Of Michael Fienen Sent: Tuesday, November 10, 2009 7:50 AM To: dotcms@yahoogroups.com Subject: Re: [dotcms] Tag Cloud Macro question
Nope,
you're gonna find yourself pretty much out of luck on that. The tagCloud
macro doesn't take any kind of query (probably a JIRA-worthy feature though)
that would allow you to grind down the list more specifically than just the
structure. I'm with you that I wish it did (especially on the calendar, which
lists every tag in the system, regardless of structure).
There is, of course, an alternative. You could write your own viewtool
for it, or you could do it with Velocity. Pull like the first X
contentlets from a structure in a normal pullContent() and make an array of the
tags, counting them as they come up. Then you can build a cloud based on
that array manually wrapping them with spans to change their size. The
overhead for that would likely be determined by the number of contentlets you
parse for the cloud.
MPF
+=============================================
| Michael Fienen - mfienen@...
| Web Marketing Manager - Systems Coordinator
| Pittsburg State University
| 212 Russ Hall
| 620.235.6072
+=============================================
----- Original Message -----
From: "jodycb" <jbenedict@...>
To: dotcms@yahoogroups.com
Sent: Tuesday, November 10, 2009 8:43:58 AM
Subject: [dotcms] Tag Cloud Macro question
I've created a structure for FAQ's
on our site. The idea is that FAQ's categorized by various departments will
show up on their pages. So only OIT FAQ's will show up on the OIT FAQ page.
I don't see any obvious way to say just show tags from the FAQ content that is
categorized OIT.
I see that I can set ignored tags but that will be unwieldy at best, almost to
the point of it being better for me to just make links to the tags I do want to
use on the page instead of using the tag cloud macro.
Nope, you're gonna find yourself pretty much out of luck on that. The tagCloud macro doesn't take any kind of query (probably a JIRA-worthy feature though) that would allow you to grind down the list more specifically than just the structure. I'm with you that I wish it did (especially on the calendar, which lists every tag in the system, regardless of structure).
There is, of course, an alternative. You could write your own viewtool for it, or you could do it with Velocity. Pull like the first X contentlets from a structure in a normal pullContent() and make an array of the tags, counting them as they come up. Then you can build a cloud based on that array manually wrapping them with spans to change their size. The overhead for that would likely be determined by the number of contentlets you parse for the cloud. MPF
+============================================= | Michael Fienen - mfienen@... | Web Marketing Manager - Systems Coordinator | Pittsburg State University | 212 Russ Hall | 620.235.6072 +=============================================
----- Original Message ----- From: "jodycb" <jbenedict@...> To: dotcms@yahoogroups.com Sent: Tuesday, November 10, 2009 8:43:58 AM Subject: [dotcms] Tag Cloud Macro question
I've created a structure for FAQ's on our site. The idea is that FAQ's categorized by various departments will show up on their pages. So only OIT FAQ's will show up on the OIT FAQ page.
I don't see any obvious way to say just show tags from the FAQ content that is categorized OIT.
I see that I can set ignored tags but that will be unwieldy at best, almost to the point of it being better for me to just make links to the tags I do want to use on the page instead of using the tag cloud macro.
I've created a structure for FAQ's on our site. The idea is that FAQ's
categorized by various departments will show up on their pages. So only OIT
FAQ's will show up on the OIT FAQ page.
BUT...
I want to use the tag cloud macro.
http://www.dotcms.org/documentation/TagCloud
I don't see any obvious way to say just show tags from the FAQ content that is
categorized OIT.
I see that I can set ignored tags but that will be unwieldy at best, almost to
the point of it being better for me to just make links to the tags I do want to
use on the page instead of using the tag cloud macro.
Any thoughts on an efficient way to do this?
> What I mean is that the links show up right?
>
> What you are missing is the indentation right?
>
>
> On Mon, Nov 9, 2009 at 2:47 PM, Nadiege <ndestang@...> wrote:
>
> >
> >
> > Hmm...I dont remember changing the css. I will have a look at it.
> >
> >
For each folder I set the flag to Show on Menu and permission to CMS Anonymous.
--- In dotcms@yahoogroups.com, Maria Ahues Bouza <maria.bouza@...> wrote: > > That's all you need to do, set the variable before you call the navigation
> like this: > > #set($openAllLevels=true) > #navigation(2,6) > > You need to make sure the pages and folders below have Show on Menu true and > CMS Anonymous Read permissions.
> > Thanks > Maria >
> On Mon, Nov 9, 2009 at 1:37 PM, Nadiege ndestang@... wrote: > > > > > > > I've tried that and it still does not work.
> > > > #set($openAllLevels=true) > > > >
> > > Subject: [dotcms] Menu Macro > > > > > > > > > > > > > > > > > > Is there a way of having more than two levels using the menu macro?
> > > > > > For instance: > > > > > > using the line: > > > > > > #navigation(2,6) only produces the side menu: > > > > > > Level 1
> > > Level 2.1 > > > Level 2.2 > > > Level 2.3 etc > > > > > > I would like to be able to show the sub-folders of sub-folders on a > > > menu. In other words I would like the menu to look like this:
> > > > > > Level 1. > > > Level 2.1. > > > Level 2.2. > > > Level 2.2.1. > > > Level 2.2.1.1. > > > > > > Is this possible?
> > > > > > > > > > > >
> -- > Maria Ahues Bouza > Managing Director, Professional Services > > dotCMS > Main: 305.858.1422
> Direct: 786.594.5272 > Fax: 305.397.1719 > www.dotcms.org > http://www.twitter.com/dotCMS
> http://www.twitter.com/mabouza > > "Packt Publishing 2009 Finalist for Best Other Open Source CMS" > > Please consider the planet before printing this email.
>
-- Maria Ahues Bouza Managing Director, Professional Services
For each folder I set the flag to Show on Menu and permission to CMS Anonymous.
--- In dotcms@yahoogroups.com, Maria Ahues Bouza <maria.bouza@...> wrote: > > That's all you need to do, set the variable before you call the navigation > like this: > > #set($openAllLevels=true) > #navigation(2,6) > > You need to make sure the pages and folders below have Show on Menu true and > CMS Anonymous Read permissions. > > Thanks > Maria > > On Mon, Nov 9, 2009 at 1:37 PM, Nadiege ndestang@... wrote: > > > > > > > I've tried that and it still does not work. > > > > #set($openAllLevels=true) > > > > > > --- In dotcms@yahoogroups.com <dotcms%40yahoogroups.com>, "Swan,Nicole" > > nswan@ wrote: > > > > > > Hi, > > > > > > > > > > > > It sounds like you might want to use the openAllLevels parameter > > > available in the macro. > > > > > > > > > > > > http://www.dotcms.org/documentation/NavigationMenuBuilder > > > > > > > > > > > > See example 2 for usage. > > > > > > > > > > > > --Nicole > > > > > > > > > > > > From: dotcms@yahoogroups.com <dotcms%40yahoogroups.com> [mailto: > > dotcms@yahoogroups.com <dotcms%40yahoogroups.com>] On Behalf > > > Of Nadiege > > > Sent: Monday, November 09, 2009 9:50 AM > > > To: dotcms@yahoogroups.com <dotcms%40yahoogroups.com> > > > Subject: [dotcms] Menu Macro > > > > > > > > > > > > > > > > > > Is there a way of having more than two levels using the menu macro? > > > > > > For instance: > > > > > > using the line: > > > > > > #navigation(2,6) only produces the side menu: > > > > > > Level 1 > > > Level 2.1 > > > Level 2.2 > > > Level 2.3 etc > > > > > > I would like to be able to show the sub-folders of sub-folders on a > > > menu. In other words I would like the menu to look like this: > > > > > > Level 1. > > > Level 2.1. > > > Level 2.2. > > > Level 2.2.1. > > > Level 2.2.1.1. > > > > > > Is this possible? > > > > > > > > > > > > > -- > Maria Ahues Bouza > Managing Director, Professional Services > > dotCMS > Main: 305.858.1422 > Direct: 786.594.5272 > Fax: 305.397.1719 > www.dotcms.org > http://www.twitter.com/dotCMS > http://www.twitter.com/mabouza > > "Packt Publishing 2009 Finalist for Best Other Open Source CMS" > > Please consider the planet before printing this email. >
That's all you need to do, set the variable before you call the navigation like this:
#set($openAllLevels=true) #navigation(2,6)
You need to make sure the pages and folders below have Show on Menu true and CMS Anonymous Read permissions.
Thanks Maria
On Mon, Nov 9, 2009 at 1:37 PM, Nadiege <ndestang@...> wrote:
I've tried that and it still does not work.
#set($openAllLevels=true)
--- In dotcms@yahoogroups.com, "Swan,Nicole" <nswan@...> wrote:
>
> Hi,
>
>
>
> It sounds like you might want to use the openAllLevels parameter
> available in the macro.
>
>
>
> http://www.dotcms.org/documentation/NavigationMenuBuilder
>
>
>
> See example 2 for usage.
>
>
>
> --Nicole
>
>
>
> From: dotcms@yahoogroups.com [mailto:dotcms@yahoogroups.com] On Behalf
> Of Nadiege
> Sent: Monday, November 09, 2009 9:50 AM
> To: dotcms@yahoogroups.com
> Subject: [dotcms] Menu Macro
>
>
>
>
>
> Is there a way of having more than two levels using the menu macro?
>
> For instance:
>
> using the line:
>
> #navigation(2,6) only produces the side menu:
>
> Level 1
> Level 2.1
> Level 2.2
> Level 2.3 etc
>
> I would like to be able to show the sub-folders of sub-folders on a
> menu. In other words I would like the menu to look like this:
>
> Level 1.
> Level 2.1.
> Level 2.2.
> Level 2.2.1.
> Level 2.2.1.1.
>
> Is this possible?
>
-- Maria Ahues Bouza Managing Director, Professional Services
I've tried that and it still does not work.
#set($openAllLevels=true)
--- In dotcms@yahoogroups.com, "Swan,Nicole" <nswan@...> wrote:
>
> Hi,
>
>
>
> It sounds like you might want to use the openAllLevels parameter
> available in the macro.
>
>
>
> http://www.dotcms.org/documentation/NavigationMenuBuilder
>
>
>
> See example 2 for usage.
>
>
>
> --Nicole
>
>
>
> From: dotcms@yahoogroups.com [mailto:dotcms@yahoogroups.com] On Behalf
> Of Nadiege
> Sent: Monday, November 09, 2009 9:50 AM
> To: dotcms@yahoogroups.com
> Subject: [dotcms] Menu Macro
>
>
>
>
>
> Is there a way of having more than two levels using the menu macro?
>
> For instance:
>
> using the line:
>
> #navigation(2,6) only produces the side menu:
>
> Level 1
> Level 2.1
> Level 2.2
> Level 2.3 etc
>
> I would like to be able to show the sub-folders of sub-folders on a
> menu. In other words I would like the menu to look like this:
>
> Level 1.
> Level 2.1.
> Level 2.2.
> Level 2.2.1.
> Level 2.2.1.1.
>
> Is this possible?
>
From:
dotcms@yahoogroups.com [mailto:dotcms@yahoogroups.com] On Behalf Of Nadiege Sent: Monday, November 09, 2009 9:50 AM To: dotcms@yahoogroups.com Subject: [dotcms] Menu Macro
Is there a way of having more than two levels
using the menu macro?
For instance:
using the line:
#navigation(2,6) only produces the side menu:
Level 1
Level 2.1
Level 2.2
Level 2.3 etc
I would like to be able to show the sub-folders of sub-folders on a menu. In
other words I would like the menu to look like this:
Is there a way of having more than two levels using the menu macro?
For instance:
using the line:
#navigation(2,6) only produces the side menu:
Level 1
Level 2.1
Level 2.2
Level 2.3 etc
I would like to be able to show the sub-folders of sub-folders on a menu. In
other words I would like the menu to look like this:
Level 1.
Level 2.1.
Level 2.2.
Level 2.2.1.
Level 2.2.1.1.
Is this possible?