Inline editing on the DetailView removes my '$' sign I added from view.detail.php

So, on the DetailView, I add on a β€˜$’ in front of numbers that are currency, I don’t want to actually store the β€˜$’ in the database.

I do so in the view.detail.php file by doing:

$this->bean->face_amount_c = '$ ’ . $this->bean->face_amount_c;

But, if I use inline editing on the field, it then removes the dollar sign when it shows the value again. I’m guessing it reloads the bean.

Suggestions on how I could keep the dollar sign there even if inline editing?