Hi Jian, Thanks for the tips... :)
I think what I'm struggling with is referencing the link. The link that has a list of images on the gallery page. How can I do this from SmartEdit? I know you can just double click the lst_Links to store it in the clipboard and click Reference Link in clipboard at SmartTree :) Cheers, Andry -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Jian Huang Sent: Monday, 15 August 2011 8:50 PM To: RedDot CMS Users Subject: Re: Target container Hi Andry, So close, but I believe you started off differently. A list in not needed in this case. You neeed: A Foundation content class with a container An image module content class that will go into the container The foundation content class code <html> <head><title></title></head> <body> <%con_images%> </body> </html> The image module content class code <div> <a href="<%img_main%>"><img src="<%att_thumbnail%>"/></a> </div> Please note that att_thumbnail is an attribute placeholder that automatically generates the thumbnail from img_main. Now, when you click on the image, the page will go to a page that just shows the image, no foundation, no nothing. That is fine. What you will need next is apply some lightbox or imagebox javascript magic and now you have a web 2.0 image gallery. Best of luck. -Jian On Aug 13, 11:00 pm, "Andry Poernomo" <[email protected]> wrote: > Hi Jian, > > It is working even if I just use image container. But it will just as if > there is no master page wrapping it :) > > So, if there is a image gallery with image list in it. Is it possible to > link this image list somewhere else using just SmartEdit? For example there > is now Volleyball image gallery, how do I refer the lst_Links at other page > to show the images in other pages? I can do it using SmartTree, but I need > to make sure user can use SmartEdit to do this :) > > Cheers Jian! > > Andry > > > > > > > > -----Original Message----- > From: [email protected] > > [mailto:[email protected]] On Behalf Of Jian Huang > Sent: Friday, 12 August 2011 9:33 PM > To: RedDot CMS Users > Subject: Re: Target container > > Hi Andry, > > Why target container with list? > > Would it be possible to make it with regular container, which has image > modules within? > > Best, > > -Jian > > On Aug 12, 5:32 am, Andry <[email protected]> wrote: > > Hi guys, > > > I am building an image gallery page. The user should be able to create > > gallery page and upload images, thumbnails and enter alternate texts. > > > For example there will be gallery pages for volleyball, basketball and > > so on. > > > So I built image and image list content classes. I have also created a > > page definition of foundation page with image gallery. > > > Now the problem is I how do I make the container at the foundation > > page defined as a target container and assign target container to the > > lst_Links automatically? > > > The user will not have access to SmartTree. > > > Or is there a better approach so the image page still gets a master > > page? > > > Thanks for your help guys. > > > Cheers, > > > Andry > > -- > You received this message because you are subscribed to the Google Groups > "RedDot CMS Users" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group athttp://groups.google.com/group/reddot-cms-users?hl=en. -- You received this message because you are subscribed to the Google Groups "RedDot CMS Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/reddot-cms-users?hl=en. -- You received this message because you are subscribed to the Google Groups "RedDot CMS Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/reddot-cms-users?hl=en.
