Hello,
Want to add Title to columns of created VIEW on Servoy 5.2.8.
In developer I fill Details->Title for each table’s column and (from developer) all works as expected. But when I import solution to application_server ```
jsColumn.getTitle();
On **servoy_repository** server:
SELECT title_text FROM servoy_columninfo WHERE tablename=‘myTbl’ AND connection_name = ‘myDb’ AND columnname=‘colNm’
Get null for **title_text**.
When I fill column manually with:
UPDATE servoy_columninfo SET title_text=‘i18n:my.internationalized.key’ WHERE tablename=‘myTbl’ AND connection_name = ‘myDb’ AND columnname=‘colNm’
works properly
How to do this on automated way? On export, I tried with:
**Export all tables from referenced servers**, but title_text is still null
Regards