Hi Joel, You are right, the Reload feature only applies to the active source (reader). As in Python paraview.simple provides a function to reload the files of a source proxy, you could add the following Python Macro to reload all reader sources at once:
from paraview.simple import * for k,v in GetSources().items(): ReloadFiles(v) Best regards, *Joachim Pouderoux*, PhD *Technical Expert - Scientific Computing Team* *Kitware SAS <http://www.kitware.fr>* 2017-09-29 14:12 GMT-04:00 Joel Kulesza <[email protected]>: > Colleagues: > > In the File menu I would expect that the "Reload Files (F5)" command would > apply to all items in the pipeline browser rather than the one currently > selected or last acted on. For individual reloading, I would expect to > need to use the right-click approach to "Reload Files." However, this does > not seem to be the case. If I open multiple, independent, data files that > I want to plot together, I must select each one in the pipeline browser and > reload it (either via F5 or right-clicking) to see changes. > > Am I correct that the "reload files" hotkey only applies to the currently > selected or last used item (a file or collection of time-series files) in > the pipeline browser? If so, is there a method to reload all items in the > pipeline browser (ideally avoiding the need to select all the files)? If > not, can this be added as an enhancement request (e.g., menu item/hotkey > for Reload All Files)? > > I'm using ParaView 5.4.1 in OS X 10.11.6. > > Please contact me with any comments, questions, or concerns. > > Thank you, > Joel > > Joel A. Kulesza, P.E.Ph.D. Candidate / Graduate Student Researcher > University of Michigan, College of EngineeringNuclear Engineering & > Radiological Sciences Dept.2355 Bonisteel Boulevard > Ann Arbor, MI 48109-2104, USAMobile: +1 (734) 223-7312 > <+1%20734-223-7312>Email: [email protected] Page: > http://www.engin.umich.edu/ners/ > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Please keep messages on-topic and check the ParaView Wiki at: > http://paraview.org/Wiki/ParaView > > Search the list archives at: http://markmail.org/search/?q=ParaView > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview > >
_______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the ParaView Wiki at: http://paraview.org/Wiki/ParaView Search the list archives at: http://markmail.org/search/?q=ParaView Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/paraview
