Where in NCM 7.3 can I sort nodes by connection profile?
I don't see any way to from the manage configurations pane nor from the manage nodes module. I would expect it to be in at least the former location.
Hi bluefunelemental,
I'm afraid there's no such possibility.
Regards,
Jiri
Is there a need for me to make an idea or is this simple enough to add as a feature request?
A new voting Idea would better for visibility (i.e. better for you).
Created a feature request here:
That said I am lazy and found a workaround. Just run this SQL query against the DB (only if you do NOT use Node Groups today) and then group the NCM Node List or manage nodes by Node Group. I'll likely make this a trigger or job until this feature is implemented.
UPDATE [your db name]. dbo.NCM_NodeProperties
SET NCM_NodeProperties = NCM_ConnectionProfiles.Name
FROM [your db name]. dbo.NCM_NodeProperties
LEFT OUTER JOIN [your db name]. dbo.NCM_ConnectionProfiles on NCM_ConnectionProfiles.ID = NCM_NodeProperties.ConnectionProfile
;
Buyer beware -not responsible for your SQL mishaps. Good luck with that. ;-)