Is there any written documentation on implementing SQL overrides within grids?
I am working with a grid based on the Customer table. I have the Contacts field in the grid. I have the following override script...
'<b>' + ISNULL(viewCustomer.Contact,'') + '</b><br />' + '<i>' + viewCustomer.FullName + '</i><br />' + ISNULL(viewCustomer.CompanyName,'')
...and the following filter fields...
Contact,FullName,CompanyName
I keep getting 'Error Generating Grid'.
Thanks.