Agree! The Data Cockpit concept is very powerful
... and, I would argue, unique to JMP.
There is no other program that allows users to access virtually ANYTHING accessible from the local system ( network folders, cloud storage, web pages, logged traces, stored images, ...) with a single mouse click!
Even better: with the new Column Tags in JMP19 one can institutionalize such interactive modules:Everyday Efficiency: Making Data Smarter. Making Smarter Data. / @julian
- open a web page ? Open an image ?
Function( {thisTable, thisColumn, iRow}, Web( thisTable:thisColumn[ iRow ] ) )
- open a JMP file? open a folder?
Function( {thisTable, thisColumn, iRow}, open( Char( thisTable:thisColumn[ iRow ] ) ) )
Just store the templates in your preferences and add them to the current data table via:

Set Preferences(
Column Tags(
Define Tag( "hogi", Symbol( "🦜" ) ),
Define Tag( "edit", Symbol( "✏️" ) ),
Define Tag(
"web",
Symbol( "🌍" ),
Property(
"Event Handler",
Event Handler(
Click(JSL Quote(Function( {thisTable, thisColumn, iRow}, Web( Char( thisTable:thisColumn[ iRow ] ) ) )
) )
)
)
),
Define Tag(
"open",
Symbol( "📜" ),
Property(
"Event Handler",
Event Handler(
Click(JSL Quote(Function( {thisTable, thisColumn, iRow}, open( Char( thisTable:thisColumn[ iRow ] ) ) )
) )
)
)
),
)
);
