I have a subform where I write HTML code. My subform just consists of a table and a lot of field information. It will be displayed and also editable. So I am using Computed Text to display the values. What I understand, when using Computed Text, it just displays the text and cannot be editable. But I want that the field can be edited. Below is some example code of my Computed Text.
<td width="100"><i>Batch No.</i></td>
<td width="15">:</td>
<td width="340"><Computed Value></td>
<td width="20"></td>
<td width="150"><i>Year</i></td>
<td width="15">:</td>
<td width="150"><b><Computed Value></b></td>
Edit Button
@Command([EditDocument])
Is there any way that I can make the Computed Text editable and then save the content? Because I have edit button to enable edit and save button to save the value.