Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
en:vtiger_6.0:modifications [2014/04/28 14:37] swarnat |
en:vtiger_6.0:modifications [2014/04/28 16:28] (current) swarnat |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Modifications ====== | + | ====== vtigerCRM 6.0 Modifications ====== |
| - | ==== permanently show number of available records in filter ==== | + | ===== permanently show number of available records in filter ===== |
| To not only display this number, if you hover with your mouse, you could do the following modifications: | To not only display this number, if you hover with your mouse, you could do the following modifications: | ||
| + | At first: If you don't see the total number of records on hover over the page numbers, you have to activate **"LISTVIEW_COMPUTE_PAGE_COUNT"** in //config.performance.php// | ||
| === File: layouts/vlayout/modules/Vtiger/ListViewActions.tpl === | === File: layouts/vlayout/modules/Vtiger/ListViewActions.tpl === | ||
| Line 20: | Line 21: | ||
| Search: | Search: | ||
| - | <code> | + | <code js> |
| var pageNumberText = pageStartRange+" "+app.vtranslate('to')+" "+pageEndRange; | var pageNumberText = pageStartRange+" "+app.vtranslate('to')+" "+pageEndRange; | ||
| </code> | </code> | ||
| Line 26: | Line 27: | ||
| Replace with | Replace with | ||
| - | <code> | + | <code js> |
| var pageNumberText = pageStartRange+" "+app.vtranslate('to')+" "+pageEndRange + " | Komplett: " + jQuery('#totalCount').val(); | var pageNumberText = pageStartRange+" "+app.vtranslate('to')+" "+pageEndRange + " | Komplett: " + jQuery('#totalCount').val(); | ||
| + | </code> | ||
| + | |||
| + | ===== Remove Username after Filtername ===== | ||
| + | |||
| + | If you don't need the Information, which user own a filter, you could easily remove this information. | ||
| + | |||
| + | === File: layouts/vlayout/modules/Vtiger/ListViewHeader.tpl === | ||
| + | |||
| + | **Search and remove** | ||
| + | <code> | ||
| + | {if $GROUP_LABEL neq 'Mine'} [ {$CUSTOM_VIEW->getOwnerName()} ] {/if} | ||
| </code> | </code> | ||