Display percent instead of decimal in grid

The BO is returning .1234.  But, I would like to display it in a grid as 12.34 at the very least (don't need % showing). Is this doable?

Tagged:

Comments

  • There is not a percent "type", so your BO would have to multiply by 100 and the column defined as a number with 2 (or how ever many desired) decimal places showing.  (This wouldn't work for an editable grid/BO though.)

  • thanks - I guess basically you have to change it to a percent on the query side and the grid puts the % next to it.