Hello everyone,
this is my screen named "R_MainMenu", the purpose of this screen is to display recommendation column from previous screen.
i use HtmlText to develop a table to store the content of the table, below is my code
"<!DOCTYPE html>
<html>
<head>
<title>Checklist Interface</title>
<style>
table {
font-family: arial, sans-serif;
width: 100%;
}
th:nth-child(2),
td:nth-child(2) {
width: 3%;
}
th:nth-child(3),
td:nth-child(3) {
width: 3%;
}
th {
padding: 10px;
border: 1px solid #dddddd;
text-align: left;
font-weight: normal;
}
td {
padding: 5px;
border: 1px solid #dddddd;
text-align: left;
font-size: 12px;
}
input[type='checkbox'] {
transform: scale(0.7);
margin-left: 40%; /* Adjusted margin to center the checkbox */
}
p {
font-family: arial, sans-serif;
width: 100%;
padding: 2px;
}
</style>
</head>
<body>
<table border='1'>
<thead>
<tr>
<th style='padding: 10px; text-align: center;'>Recommendation</th>
<th style='width: 2%; padding: 2px;'>Completed</th>
<th style='padding: 2px;'>Remarks</th>
</tr>
</thead>
<tbody>
<tr>
<td><p>" & Gallery5.Selected.'Recommendation' & "</p></td>
<td><input type='checkbox'></td>
<td></td>
</tr>
<tr>
<td><p>" & Gallery5.Selected.'Recommendation' & "</p></td>
<td><input type='checkbox'></td>
<td></td>
</tr>
<tr>
<td><p>" & Gallery5.Selected.'Recommendation' & "</p></td>
<td><input type='checkbox'></td>
<td></td>
</tr>
</tbody>
</table>
</body>
</html>
"
my issue is that, i have no idea on how can i display all content from recommendation column from previous screen.
the flow is like this , user will click on the recommendation button (acted as column name) and will be redirected to next screen that will display the table.
Thank you !