I'm trying to use DDD and Fluent Api in a test application. I had the following question:
I have a product registration (in this case ink), when adding a new product I put dropdownlist's, to force the correct and standardized registration, ex: White RAL 9003 LI BR PO, this acronym and color comes from dropdownlist S, and I want to save in a "description" field, because in the index page I will only show this description.
I thought of doing so: put the description field as readonly and as you select the dropdownlist's items it will fill the description field, using javascripts, however I think it will hurt the DDD rule.
Is it okay to do this or is there another better way? If there is a more correct way, what would it be? Which layer would put this routine?