HTML to PDF - Convert & Export HTML Table to PDF Using JavaScript

Поділитися
Вставка
  • Опубліковано 3 гру 2024

КОМЕНТАРІ • 13

  • @greenhillsmarianopeligro8463
    @greenhillsmarianopeligro8463 Рік тому +2

    You are really greaaaat! Keep up the good work sir Jeet Saru!🥰

    • @CodingDesign
      @CodingDesign  Рік тому

      Thank you! for appreciating my work. Hope you'll show your same l❤ve & support. in the future too.

  • @_poke_rock
    @_poke_rock 4 місяці тому +1

    This Playlist is enough to satisfy the company needs

    • @CodingDesign
      @CodingDesign  3 місяці тому

      There is one more features Pagination, which I've already created as separate Topic.

  • @ocin3752
    @ocin3752 Рік тому +1

    As always, another great video.

    • @CodingDesign
      @CodingDesign  Рік тому +1

      I appreciate that. And I'm expecting same l❤ve & 🤝support in the 🕝future too. Because it's really difficult to continue as UA-cam Content Creator.
      Keep 👏motivating.

  • @VaibhavYawalkar
    @VaibhavYawalkar Рік тому

    Thanks and Respect !

  • @Krisler12
    @Krisler12 Рік тому +1

    Please post your github link so we can download the files because it is hard to write them by hand while watching the video too. Thank you in advance!

    • @CodingDesign
      @CodingDesign  Рік тому +2

      Check out 🎬video's description. I do hope you'll show your same l❤ve & support to _My Channel_ in the 🕝future too.

    • @Krisler12
      @Krisler12 Рік тому +1

      Thank you! I subscribed and liked your video.

  • @gamedark102
    @gamedark102 Рік тому

    Great tutorial but doesn't work if you have more than 9 entries in the table it seems, I had 15 in mine and when downloading the PDF it only shows the first 9 entries no matter what :/ do you have a solution to this issue ?

    • @CodingDesign
      @CodingDesign  Рік тому

      Now you've to update CSS & JS code
      📑In CSS File, add(➕)
      @media print {
      .table, .table__body {
      overflow: visible;
      height: auto !important;
      width: auto !important;
      }
      }
      📢If you want to customize page then you can use @page rule.
      @page {
      size: landscape;
      margin: 0;
      }
      ⚠ But it's not compulsory later on while printing you can provide custom value for your page but make sure your page's "LAYOUT" must be "LANDSCAPE".
      📝 In JS File,
      update(⏏) "html_code" VARIABLE by adding(➕) extra text "" at top.
      ⚠ It's important to specify your document type as HTML5.
      Reason just check by adding(➕) and removing(❌) this text.