I want to be able to display top 50 down but also search through the list with a query in a search bar. I've used the checkbox search in modern dashboards but it seems to only search the top 50 and not do a table lookup like the classic custom query "Search SWQL Query" Does. Thank you very much for any help you can provide.
EXAMPLE:
SELECT
NIP.NODE.Sysname AS [Name]
,'/Orion/NetPerfMon/NodeDetails.aspx?NetObject=N%3a' + ToString(nip.node.nodeid) AS [_LinkFor_Name]
, '/Orion/images/StatusIcons/Small-' + nip.node.StatusLED AS [_IconFor_Name]
,NIP.IPAddress AS [IP Address]
,NIP.Interface.Name AS [Interface]
,NIP.Interface.Alias AS [Description]
,NIP.Interface.DuplexMode AS [Duplex Mode]
,NIP.Interface.InterfaceSpeed AS [Bandwidth]
,NIP.Interface.PercentUtil AS [Utilization]
----Used for Search Query on classic but doesn't work on modern dashboard----
FROM Orion.NodeIPAddresses NIP
WHERE (NIP.NodeID = ${NodeID})
AND (NIP.NODE.Sysname LIKE '%${SEARCH_STRING}%')
AND (NIP.IPAddress LIKE '%${SEARCH_STRING}%')
OR (NIP.Node.Caption LIKE '%${SEARCH_STRING}%')
OR (NIP.Interface.Caption LIKE '%${SEARCH_STRING}%')
ORDER BY NIP.Interface.Name