I'm making the call within renderRow() within my delegate class. I wrote code to output the value within an HTML comment block, and I'm only getting the 1st 255 characters. My code looks something like this:
- Code: Select all
function renderRow ( &$record )
{
print("<!-- RAC notes ".$record->display(cp_notes)."-->");
print("<!-- RAC notes ".$record->getValueAsString(cp_notes)."-->"); // this also only gives me the 1st 255 characters
...
I've tried getValueAsString(), and a few other functions on the Record class as well.
Where is this limit set? How can I indicate to give me the full value that is stored in the table?