Dear Communiy,
Recently I would like to add info panel which recives value from the cell and do something then return the result.
I tried to reporoduce the example.
https://datagrok.ai/help/develop/how-to/add-info-panel#docusaurus_skipToContent_fallback
‘’’
name: string length
language: python
tags: panel
input: string s {semType: text}
output: int length
condition: true
length = len(s)
‘’’
After saved the script, I open some tables which has string column. But I could not see the results.
How can I add the results? I expected that the results automatically added.
In the above example, the input parameter has {semType: Text} . So when you have a table open and go to a cell in a column with the semantic type Text , you will see this panel. You can use other semantic types in a similar way, for example, set {semType: Molecule} to display properties of various chemical structures.
Thanks,
Taka

