Can someone please share some thoughts on an MVC approach to this application using Pivot?
The question arises from trying to figure out how best to rewrite data changed by a TableViewRowEditor. Data underlying the model is a sequence of bytes, the position and length of which can represent different data types. These can be parsed and converted to TableData objects (the model?) which can be rendered and edited as Pivot ListButtons, TextInputs, and Checkboxes. The parse is expensive and the position and length data can be stored in the TableData cell to facilitate the rewrite. I can probably rewrite the data as part of the "store" process in the RowEditor, but can someone suggest a more detached MVC approach? Thanks