Don't display an empty module
Last Post 06/25/2007 2:13 AM by Lee Sykes. 6 Replies.
Author Messages
Tatika
Nuke Newbie
Nuke Newbie
Posts:2


--
06/20/2007 9:21 AM  
Hi everyone!!


Does anyone knows how do not show a module when it doesn't have any information to display?

I'm searching on the web but I can't found anything about it.

Thanks.
Sds,
Tatiana Rocha
Joseph Craig
DNN MVP
Posts:11667


--
06/20/2007 11:20 AM  
What kind of module do you not want to display?

If you show the container of a module, and the module doesn't inject any content into it, you're still going to see the container. But, if you don't show the container and there's no content, I believe that the module effectively will have disappeared.

If you want to show the container, but only when it contains content, I think that would require modification of the module's code. I'm sure that it could be done -- you'd have to determine (inside of the module) if there is content and set the module to not be visible (perhaps you could change the view permissions) if there is no content -- but it might not be a particularly easy thing to do.

Perhaps if you could give us a few more details -- which module, why you want it to be invisible, etc. -- that might help with an answer.


Joe Craig, Patapsco Research Group
Complete DNN Support
Tatika
Nuke Newbie
Nuke Newbie
Posts:2


--
06/20/2007 4:06 PM  
Joe, thanks for answer.

The module container we need to display because of the layout site.

About the problem, for example I'm using the announcement module and sometimes these stay empty, with no announcements.
In these cases I need that the module (container and content) will not be displayed.

And this will happened with another modules like Link, Survey, and so on.

I wondering that I really will need to change the code's module, but maybe another one can give other option.

Thanks again.
Tatiana Rocha
Lee Sykes
DNN Creative Staff
Nuke Master VI
Nuke Master VI
Posts:4945


--
06/21/2007 3:59 AM  
Hello,

There isn't a way of doing this out of the box, but if you want to modify the source code of the modules you may be able to do the following:

Assign each of the modules with no container - or a transparent container
Change the module code so that the data has new css classes attached to it
Add these css classes to the skin.css file and add the styling that you need for creating a container
When the data is displayed the container will be styled, when it is not displayed the container will be blank

- I don't know how you will go about attaching css classes to data however

Does anyone else have any suggestions?

Thanks,
Lee Sykes
Site Administrator
Subscribe to the website : DotNetNuke Video Tutorials : The Skinning Toolkit : DotNetNuke Podcasts

Twitter: www.twitter.com/DNNCreative

Lee Sykes's Facebook Profile
evgamon
Nuke Newbie
Nuke Newbie
Posts:2


--
06/24/2007 11:23 AM  
Hi,

you could modify the skin file to hide empty panes. Just add visible="false" where the id="X pane" runat="server" is. That way the pane will not show until you add some content in it.
Joseph Craig
DNN MVP
Posts:11667


--
06/24/2007 11:26 AM  
Wouldn't that just make the pane always invisible?

Joe Craig, Patapsco Research Group
Complete DNN Support
Lee Sykes
DNN Creative Staff
Nuke Master VI
Nuke Master VI
Posts:4945


--
06/25/2007 2:13 AM  
Hi Joe,

No it makes the pane invisible only when a module is not added into the content pane. - It doesn't however make a module invisible if it doesn't contain any content,

Cheers,
Lee Sykes
Site Administrator
Subscribe to the website : DotNetNuke Video Tutorials : The Skinning Toolkit : DotNetNuke Podcasts

Twitter: www.twitter.com/DNNCreative

Lee Sykes's Facebook Profile


---