Mysql + CRUD Master Detail : tables with 2 foreign keys

I have these 2 tables:
CREATE TABLE IF NOT EXISTS mdmod00f (
MDDAT decimal(8,0) DEFAULT NULL COMMENT 'Data immissione',
MDCLIE int(11) NOT NULL DEFAULT '0' COMMENT 'Codice cliente',
MDMD char(1) DEFAULT NULL COMMENT 'Flag M-D',
MDCOD char(20) NOT NULL DEFAULT '' COMMENT 'Codice modello',
MDDES char(35) DEFAULT NULL COMMENT 'Descrizione modello'
PRIMARY KEY (MDCLIE,MDCOD)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS mdcic00f (
CIDAT decimal(8,0) DEFAULT NULL COMMENT 'Data immissione',
CICLIE int(11) NOT NULL DEFAULT '0' COMMENT 'Codice cliente',
CIMD char(1) DEFAULT NULL COMMENT 'Flag M-D',
CICOD char(20) NOT NULL DEFAULT '' COMMENT 'Codice modello',
CICIC decimal(2,0) NOT NULL DEFAULT '0' COMMENT 'Codice ciclo',
PRIMARY KEY (ID),
KEY mdcic00f_fk (CICLIE,CICOD)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=20186 ;

When i create a master-detail page i have 2 problems:

  1. the master detail page is created but only with the relation MDCLIE/MDCOD.
  2. I don't see in Radzed how to modify the detail page. I don't see it in the page's list.

Radzen version: 2.43.9

Such scenario is not supported by master/detail page wizard. You can create your pages manually.

Can you send me a link / tutorial to build a master - detail manually? Thanks