Membres inscrits :2359
Membres en ligne : 0
Invités en ligne : 2


|
Conversation : Bordure tableau avec wxHtmlEasyPrinting. |
ajm (Membre)
Inscrit le : 16-03-2011
Messages: 82
Snippets: 0
Tutoriels: 0
Hors ligne |
Bonjour,
J'utilise wxHtmlEasyPrinting pour imprimer un tableau, le problème ce que le bordure de ce tableau n'est pas ce que je veux avoir, j'ai essayer de modifier le code HTML mais aucun résultat satisfaisant. en voici le code HTML
Code: <b>TEST</b> <i>Tableau</i> avec <u>wxHtmlEasyPrinting</u> <table border="1" width="100%"> <tr> <td>TEST 00</td> <td>TEST 00</td> <td>TEST 00</td> <td>TEST 00</td> </tr> <tr> <td>TEST 00</td> <td>TEST 00</td> <td>TEST 00</td> <td>TEST 00</td> </tr> </table>
Voici aussi le output du wxHtmlEasyPrinting et le tableau sur MS Word que je veux imprimer. http://www.freeimagehosting.net/ephal
Dernière modification par ajm (10-02-2012 09:54:30)
|
|
Xaviou (Administrateur)
Lieu: Annecy (74)
Inscrit le : 27-08-2007
Messages: 1387
Snippets: 25
Tutoriels: 6
Site web
Hors ligne |
Salut.
As-tu essayé avec la propriété html "cellspacing" ?
Code:<b>TEST</b> <i>Tableau</i> avec <u>wxHtmlEasyPrinting</u> <table border="1" width="100%" cellspacing="0" > <tr> <td>TEST 00</td> <td>TEST 00</td> <td>TEST 00</td> <td>TEST 00</td> </tr> <tr> <td>TEST 00</td> <td>TEST 00</td> <td>TEST 00</td> <td>TEST 00</td> </tr> </table>
Je ne suis pas certain que wxHtmlEasyPrinting le prenne en compte, ni que ça donne le résultat escompté, mais faut essayer quand même.
@+ Xav'
|
Le nouveau portail wxWidgets francophone : www.wxdev.fr Ben en fait, vous y êtes déjà... et effectivement, depuis le temps, ce n'est plus tellement nouveau....
|
|