L
LarryDusch
Guest
Another option is to check the length of product.description and see if it exceeds 52 characters. If it does, then do a down , then display the rest of the description. Something along the lines of e.g.
And if you want to be fancy you could r-index from column 52 to find the first blank and parse the description based on that. (Sorry James, first post and I haven't figured out how to post code yet).
Continue reading...
Code:
display stream blah entryitem.product .... with frame f-detail. if length(product.description) > 52 then do: down stream blah with frame f-detail. display stream blah substring(product.description,53) @ product.description with frame f-detail. down stream blah with frame f-detail. end.
Continue reading...