Display content on widget and PDF
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
Hi,
I have a widget with 5 nested table tags in HTML in which each has its separate ng-if conditions, dependent on If condition, the cascading data should be displayed. Now this data is displaying in Service Portal widget, there is a button functionality on the widget, which works as upon triggering button the data on the widget should be copied into PDF and allow users to Print which is written by a client controller.
Now, the issue is data is displaying on to widget, but while triggering PDF it is giving as blank data , reason being the structure is <table><tbody><tr><nested-tables></nested-tables></tr></tbody></table>.
The <table> tag inside <tr> is not executing, hence I have given <table><tbody><tr><td><nested-tables></nested-tables></td></tr></tbody></table>. This way the data is displaying on widget and PDF, but now issue is with due to which we used table data tag<td>, the HTML data displaying on widget format has been effected as evreything is considered a one data by the system.
Without been effecting the font, format, structure of Widget, what alternative tags could be suggestable to use to display data on Widget and PDF, please let me know if anyone have some insights on this.