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?