Difference between revisions of "Documentation/4.5/Developers/FAQ/IO"
From Slicer Wiki
(Nightly -> 4.5) |
(No difference)
|
Latest revision as of 20:17, 12 November 2015
Home < Documentation < 4.5 < Developers < FAQ < IO
For the latest Slicer documentation, visit the read-the-docs. |
IO
Why is my node writer not showing up in the Save dialog ?
You have implemented a loadable module with a new MRML node, its storage node, and the qSlicerNodeWriter needed to save your node on your system file. If the writer is not showing up for your node in the qSlicerSaveDataDialog, it could be one of those following reasons :
- You need to register your writer in the qSlicerIOManager in qSlicerYourModule::setup().
Example: qSlicerMarkupsModule writer registration
- Your node needs to be a sub-class of vtkMRMLStorableNode.