[Vtigercrm-commits] [vtiger-commits] r4717 - /vtigercrm/trunk/Smarty/templates/ListViewEntries.tpl

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Wed Mar 29 10:44:51 EST 2006


Author: saraj
Date: Wed Mar 29 08:44:45 2006
New Revision: 4717

Log:
* Added condition  to avoid the select checkbox to display the Import Lists

Modified:
    vtigercrm/trunk/Smarty/templates/ListViewEntries.tpl

Modified: vtigercrm/trunk/Smarty/templates/ListViewEntries.tpl
==============================================================================
--- vtigercrm/trunk/Smarty/templates/ListViewEntries.tpl (original)
+++ vtigercrm/trunk/Smarty/templates/ListViewEntries.tpl Wed Mar 29 08:44:45 2006
@@ -40,14 +40,18 @@
                          <div  style="overflow:auto;width:100%;height:300px; border-top:1px solid #999999;border-bottom:1px solid #999999">
 			 <table border=0 cellspacing=1 cellpadding=3 width=100% style="background-color:#cccccc;" class="small">
 			      <tr>
-             			 <td class="lvtCol"><input type="checkbox"  name="selectall" onClick=toggleSelect(this.checked,"selected_id")></td>
+				{if $SHOW_MASS_SELECT neq 'false'}
+	             			 <td class="lvtCol"><input type="checkbox"  name="selectall" onClick=toggleSelect(this.checked,"selected_id")></td>
+				{/if}
 				 {foreach item=header from=$LISTHEADER}
         			 <td class="lvtCol">{$header}</td>
 			         {/foreach}
 			      </tr>
 			      {foreach item=entity key=entity_id from=$LISTENTITY}
 			      <tr bgcolor=white onMouseOver="this.className='lvtColDataHover'" onMouseOut="this.className='lvtColData'"  >
-				 <td><input type="checkbox" NAME="selected_id" value= '{$entity_id}' onClick=toggleSelectAll(this.name,"selectall")></td>
+				{if $SHOW_MASS_SELECT neq 'false'}
+					 <td><input type="checkbox" NAME="selected_id" value= '{$entity_id}' onClick=toggleSelectAll(this.name,"selectall")></td>
+				{/if}
 				 {foreach item=data from=$entity}	
 				 <td>{$data}</td>
 	                         {/foreach}





More information about the vtigercrm-commits mailing list