I want to use this qMRMLNodeCombobox to choose the fiducial node, but the combobox is gray and can’t to interact with mouse. So, how can I use the combobox to choose the fiducial node?
If you created the UI with Qt designer, I think the step that you missed was making the connection between the parent widget’s mrmlSceneChanged signal and the combobox’ setMRMLScene function. You can do it by switching to Edit Signals/Slots mode (F4). Normally if we create a UI in designer, we do that instead of adding this line in the code (that way there is no question about when to call it exactly).