Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 699 Bytes

how-to-join-in-grid-data.md

File metadata and controls

28 lines (23 loc) · 699 Bytes

How To Make A Join Table in Grid Data

Table : Products

Field Name Data Type
id int (PK)
name varchar(255)
description varchar(255)
categories_id int(11)

Table : Categories

Field Name Data Type
id int(PK)
name varchar(50)

Products

$this->col[] = ["label"=>"Name","name"=>"name"];
$this->col[] = ["label"=>"Description","name"=>"description"];
$this->col[] = ["label"=>"Category","name"=>"categories_id","join"=>"categories,name"];

What's Next

Table Of Contents