With the following code, I can search log_path info
db.ftp_simplivity_log_db.log_path.readable = True
ftp_simplivity_log_grid = SQLFORM.grid(db.ftp_simplivity_log_db,
searchable=True,
advanced_search=False,
orderby=~db.ftp_simplivity_log_db.log_date,
sortable=True,
details=False,
csv=False,
paginate=50,
maxtextlengths={'ftp_simplivity_log_db.log_date': 100, 'ftp_simplivity_log_db.log_path': 300},
links=[lambda row: A('SimplifY --> ' + row.log_path, _href=URL('download_simplivity_log', args=
row.id), _class='btn btn-light')])
But changing to False
db.ftp_simplivity_log_db.log_path.readable = False
The output looks clean, but search is not able to search the log_path,

Hence the question I have is,
Is there a way to keep
db.ftp_simplivity_log_db.log_path.readable = True
so search can work and still be able to hide it in the actual grid display ?