Icônes » History » Version 3
Pablo Alingery, 21/03/2012 16:55
1 | 1 | Pablo Alingery | h1. Icônes |
---|---|---|---|
2 | 1 | Pablo Alingery | |
3 | 1 | Pablo Alingery | Pour remplacer un lien par une icône il faut dans le fichier client-user/js/def.js |
4 | 1 | Pablo Alingery | remplacer |
5 | 1 | Pablo Alingery | return Ext.isEmpty(value) ? null : "<a href='" + value + "' target='_blank'>" + i18n.get('label.command') + "</a>"; |
6 | 1 | Pablo Alingery | par exemple par : |
7 | 1 | Pablo Alingery | return Ext.isEmpty(value) ? null : "<a href='" + value + "' target='_self'>" + "<img src='/sitools/upload/download20.jpg' alt='Download image not found' ALIGN='middle'</img>" + "</a>"; |
8 | 1 | Pablo Alingery | où |
9 | 1 | Pablo Alingery | target='_self' indique que l'on souhaite que le lien s'ouvre dans la page courante |
10 | 2 | Pablo Alingery | target='_blank' indique que l'on souhaite ouvrir le lien dans une nouvelle fenêtre / nouvel onglet |
11 | 3 | Pablo Alingery | img src='/sitools/upload/download20.jpg indique l'emplacement de l'icône |
12 | 1 | Pablo Alingery | Ex : |
13 | 1 | Pablo Alingery | <pre> |
14 | 1 | Pablo Alingery | else if (item.columnRenderer == "externalUrl") { |
15 | 1 | Pablo Alingery | renderer = function (value, metadata) { |
16 | 1 | Pablo Alingery | metadata.attr = 'ext:qtip="Download this uncompressed data"'; |
17 | 1 | Pablo Alingery | //return Ext.isEmpty(value) ? null : "<a href='" + value + "' target='_blank'>" + i18n.get('label.command') + "</a>"; |
18 | 1 | Pablo Alingery | |
19 | 1 | Pablo Alingery | //Init return |
20 | 1 | Pablo Alingery | //return Ext.isEmpty(value) ? null : "<a href='" + value + "' target='_blank'>" + i18n.get('label.command') + "</a>"; |
21 | 1 | Pablo Alingery | |
22 | 1 | Pablo Alingery | //Pablo modif |
23 | 1 | Pablo Alingery | return Ext.isEmpty(value) ? null : "<a href='" + value + "' target='_self'>" + "<img src='/sitools/upload/download20.jpg' alt='Download image not found' ALIGN='middle'</img>" + "</a>"; |
24 | 1 | Pablo Alingery | }; |
25 | 1 | Pablo Alingery | </pre> |