In our model-driven app, we have a custom table with a multi-line text field in it. On the form, we're using the Rich Text Editor control, which inserts HTML tags into the content. We are looking for a way to display the contents of that field in a subgrid with the HTML tags stripped out.
One idea I had was to add a second multi-line text field to the table that gets populated automatically by a workflow that strips the HTML tags. That field could be displayed on the subgrid instead of the original. The problem with this is the size of the duplicated data. This table typically has millions of records and the field contents can be up to 1 million characters. Nearly doubling that content size will cause an added expense to the database costs for our clients.
Anyone have any other ideas?