function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Zach AckermanZach Ackerman 

Replicate Case Comments on Opportunity

I'm trying to replicate the Case comments format on an opportunity. I created a custom object Opportunity_Comments__c. I did some testing and the comment will only show the first 255 characters in the related list. How can I build a visualforce page to show the opportunity comments on that particular opportunity without the 255 limit. The only fields I need showing are "Name" and "Comment__c". 
Eric PepinEric Pepin
Try using a Long Text Area instead of a Text field. It will allow you 131,072 characters instead of 255. After you change the field type, you may not need the VF page. Let me know if you still require the page.