Andrew,
One other question... I'm pulling data out of my database with a custom SQL query. One of the fields I want is a unique ID for a transaction (a telephone call).
I want to be able to have someone click on the date of the call and be sent to a URL that gives more info on that particular call. I am successfully doing that with transformations:
"Date" => array(
"html" => "{DATA}",
"tag" => "a",
"attrib" => array("href" => "create?uid={ASSOCIATED}"),
"associate" => "Call ID",
),
However, I really don't want to ever display the Call ID column. You've got code for injecting columns of data, is there any trick to suppressing columns of data?
I was thinking maybe a transform on Call ID to assign it a given class and then display:none; that class inside the CSS, but that's kinda evil. I'd rather just mark that column as no-display to TG.