P
|
procheck author 2/4/2011 |
I was able to find the solution. All of the examples I read were trying to hide columns with empty fields. My column fields were initialized to zero. By looking at the Cars example generated code, I saw $row["fieldname_fieldcolumn"]=false; in the After Record Processed event. By using this, it hid the values for this column, then I was able to use $xt->assign("fieldname_fieldheadercolumn",false); in the Before Display event. |