Hello,
I have a customized table on our homepage dashboard which shows open cases. I have customized the Interal Comments field using the following SQL statement:
'<b>' + ISNULL(viewCases.Subject,'') + '</b><br />' + ISNULL(viewCases.InternalComments,'')
I want to have both the cases.Subject and cases.InternalComments shown together in the same field.
This is working, except that when the internal comments field is greater than three lines, and the "Show More" link is displayed, the html style is removed, making it harder to read. I still want both pieces of information in the table cell, but I want to retain the style I have specified in the SQL.
When I do click on the "Show More" link to expand the cell, the style is applied. But when I click on the "Show Less" link, the style is removed. I do not want the style removed.
Is this something I can modify?
Thanks for the help.