Change font on default filter in function_init hook
Posted: 2017-06-16 12:15
Hi,
I applied a default filter on table editing the function_init hook (as described in the article https://bigprof.com/appgini/tips-and-tu ... ult-filter), below the code:
the function runs correctly, but the table's grid display the rows with a different font size ( "Helvetica 12" instead "Helvetica 9")
The record row without the default filter:

The record row with the default filter:

Is there a fix for that issue ?
ALex.
I applied a default filter on table editing the function_init hook (as described in the article https://bigprof.com/appgini/tips-and-tu ... ult-filter), below the code:
Code: Select all
function Software_init(&$options, $memberInfo, &$args){
addFilter(1, 'and', 3, 'isEmpty');
return TRUE;
The record row without the default filter:

The record row with the default filter:

Is there a fix for that issue ?
ALex.