Hello!
I have gallery [Gallery1 ] where it stores list of items and for each item, user can view the details individually, i want to use htmlttext to display it , the reason being is because i want to add print functionality on that screen. below is my html code :
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<table style = "padding:10px;">
<tr>
<th style= "color:blue; padding:10px; text-align: left;">LL ID</th>
<th style= "color:blue; padding:10px; text-align: left;">PROJECT NAME</th>
</tr>
<tr>
<td style= "color:#a9a9a9; padding:10px;text-align: center;">1</td>
<td style= "color:#a9a9a9;text-align: center;">Bokor</td>
</tr>
</table>
<hr>
<table>
<tr style= "padding: 10px;">
<th style="text-align:left;">Title</th>
</tr>
<tr>
<td style= "background-color: #dddddd;padding: 10px; ">Title1</td>
</tr>
<tr>
<th style="text-align:left;">What Happened</th>
</tr>
<tr>
<td style= "background-color: #dddddd;padding: 10px;">WH1</td>
</tr>
<tr>
<th style="text-align:left;">Root Cause</th>
</tr>
<tr>
<td style= "background-color: #dddddd;padding: 10px;">RC1</td>
</tr>
<tr>
<th style="text-align:left;">Impact</th>
</tr>
<tr>
<td style= "background-color: #dddddd;padding: 10px;">I1</td>
</tr>
<tr>
<th style="text-align:left;">Recommendation</th>
</tr>
<tr>
<td style= "background-color: #dddddd;padding: 10px;">R1</td>
</tr>
</table>
</body>
</html>
can anyone help me what function should i use to collect, call and display the selected items in my htmlText?
Thank you for you help!