In the context of Ext-js datastore. is it a good practice to share data store across multiple components(eg. combobox, grid). Currently have multiple lists(presented in grids) where I allow user to save their preferences:
list1, choose a color list2, choose a style ...
these preferences use a single datastore X.
user can add or remove on each list.
on a separate gui user have these list represented in comboboxes cb1, cb2. is it a good idea for these comboboxes also use the datastore X and do filter on it?
thanks