Login or Register

RSS IconRecent posts in this topic

avatar
tylorllewellyn on Mar 6. 2008. 10:44 am
I would like all the tabs like "Files, Tickets, Discussions" to become highlighted in some way to let staff know the this section has info in it. Where do I get started?
avatar
Davor on Mar 6. 2008. 11:10 am
+1
www.synergetics.be | www.davor.be
avatar
tylorllewellyn on Mar 6. 2008. 11:16 am
Sorry I'm very new to aC what files do I edit? I'm still trying to figure out the file structure.
avatar
Davor on Mar 6. 2008. 2:41 pm
Have no idea. But would love the feature
www.synergetics.be | www.davor.be
avatar
Ilija Studen on Mar 6. 2008. 3:40 pm
System just collects tab names and their URL without checking if there are objects present on the pages. Because of that tabs are no "aware" of data they display. Code responsible for displaying tabs is located in wireframe.tpl:

{if isset($project_tabs)}
<div id="tabs">
	<div class="container">
  	<ul>
  	{foreach from=$project_tabs->data key=current_tab_name item=current_tab name=page_tabs}
  	  <li {if $smarty.foreach.page_tabs.iteration == 1}class="first"{/if}><a href="{$current_tab.url}" {if $current_tab_name == $project_tab}class="current"{/if}><span>{$current_tab.text|clean}</span></a></li>
  	{/foreach}
    </ul>
  </div>
</div>
{/if}


Path: /application/activecollab/moduls/system/layouts/wireframe.tpl

Behavior you requested can be implemented, but it would require good understanding of the system in order to be done properly (per project counters for every type, caching to keep things as fast as possible etc). We do not plan to introduce such a feature at this point, but we'll consider it for one of the future versions.
activeCollab team member
avatar
Brian on Mar 7. 2008. 1:27 pm
+2 - Yes, this would be a very nice feature.

RSS IconRecent posts in this topic