Abstracting UI data formatting - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T23:42:00Zhttp://stackoverflow.com/feeds/question/355813http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/355813/abstracting-ui-data-formatting1Abstracting UI data formattingAndrew Bullock2008-12-10T11:49:11Z2008-12-10T15:31:23Z
<p>Hi,</p>
<p>I've got some entities which have decimal properties on them. These entities' properties are displayed in multiple places throughout my UI.</p>
<p>Currently I'm finding myself doing:</p>
<pre><code>litWeight.Text = person.Weight.ToString("0.00");
</code></pre>
<p>all over the place.
Now I know for a fact that in several instances, and am suspicious of many others that the client is likely to want the values to 3d.p. in the future.</p>
<p>Is there some pattern I can employ to handle the formatting of this Weight property (and other properties; not just decimals, perhaps dates etc.) so that I can have this formatting in a single place?</p>
<p>I know could use a formatstring in the webconfig, or write some extension methods in the UI but these don't seem very elegant solutions.</p>
<p>It would be nice to have some formatting objects which are tied to my entities, so its inherently obvious which formatter to use.</p>
<p>Thanks,</p>
<p>Andrew</p>
http://stackoverflow.com/questions/355813/abstracting-ui-data-formatting/355852#3558522Answer by Toni Ruža for Abstracting UI data formattingToni Ruža2008-12-10T12:07:38Z2008-12-10T12:07:38Z<p>The simplest solution would be to make a utility class with static methods that appropriately format different types of values and call them. For example:</p>
<pre><code>litWeight.Text = Utility.FormatWeight(person.Weight);
</code></pre>
http://stackoverflow.com/questions/355813/abstracting-ui-data-formatting/355854#3558541Answer by Paul for Abstracting UI data formattingPaul2008-12-10T12:08:09Z2008-12-10T13:31:03Z<p>Can you not add a method to the entities for formatting themeslves? Then each object can delegate to a 'strategy' object to do the actual formatting. </p>
<p>A reason for this is both to be able to change the decimal places etc, but also to allow things like internationalisation - decimal formatting is locale-dependent; some countries use decimal commas instead of points, or group digits in sets other than threes etc.</p>
<p>EDIT: The comment was this puts presentation code in the domain layer. True, so apply the standard fix for all design problems; add one more layer of indirection :)</p>
<p>You may not want to have the full MVC, but the concept of View and Model still seem appropriate. Perhaps, for each entity, define a View class, so PersonView which keeps a reference to a Person object and has properties called format_weight etc for each property of Person that is of interest? It should still use a Strategy pattern for the actual formatting.</p>
<p>So your example would be </p>
<pre><code>PersonView pv = new PersonView(person)
litWeight.Text = pv.format_weight();
</code></pre>
<p>(please excuse syntactical errors, I don't speak C#)</p>
<p>If you want, you could make PersonView drop in replacement for Person, either by reimplementing the methods/properties and delgating to the referenced Person, or by inheriting from Person when making PersonView?</p>
http://stackoverflow.com/questions/355813/abstracting-ui-data-formatting/356481#3564811Answer by Garry Shutler for Abstracting UI data formattingGarry Shutler2008-12-10T15:31:23Z2008-12-10T15:31:23Z<p>You could create a very basic user control - deriving from label or similar - that is responsible purely for displaying a weight string so you then have:</p>
<pre><code>weightValue.DisplayValue(person.Weight);
</code></pre>
<p>and the setter formats the decimal as required. If this is used whenever you display a weight then you only have to alter the user control to change all displays of weight.</p>
<p>A basic version could be:</p>
<pre><code>public void DisplayValue(decimal weight)
{
this.Text = weight.ToString("0.00");
}
</code></pre>