hi, in my grid I have some related tables, so I was asking if you could put different ids to each column.Because i need to create a Hiperlink for any column. Thanks and sorry for my English
1 Answers
Hello,
You can specify each column configuration using:
http://www.phpgrid.org/docs/#Selecting_Specific_Columns
And to make link you can set:
$col["link"] = "http://google.com/?id={client_id}";
$col["linkoptions"] = "target='_blank'"; // extra params with <a> tag
Where client_id is column name to replace placeholder {}
Your Answer