Hi everybody:
I'm working with Multicolum TextBox; one column contain JSON text, the text normally is bigger than column size.
when I move the mouse pointer over the column, all JSON data is showed (yellow box) in single row, but I would like to change the format of the JSON to multirow:
from:
{"event_id":2, "event_desc":"static", "event_type_id_ref":5, "key":10, "key_name":"STATIC_MAPING", "active_map":7, "triggered_by":18}
to:
{
"event_id":2,
"event_desc":"static",
"event_type_id_ref":5,
"key":10,
"key_name":"STATIC_MAPING",
"active_map":7,
"triggered_by":18
}
If move mouse over the cell, now I can change the format of the JSON (to multi-row) and replace the Listbox "TipStrip", but only display the new format if the mouse is right on the Cell line, not in the center of the cell, in this case is displaying the original Cell Data (one row).
I thing is showing the formatted data because I'm putting the mouse not in an specific cell, but inside of the MC List, so, is showing the last TipStrip I updated.
is anyway to Disable the Cell "display"? so, the MC List will display the latest TipStrip (maybe, not sure).
or any other Ideas?
I need to do this becase the new format is easier to see the values for every variable.
Thank you.
please see attached VI. and pictures.