Hi all.
I´m trying to create a grid control that will work as a matrix. For now, my manifest has only one dataset, but I will add more later.
During development and test using the harness, everything works as expected, but when I add it to a canvas, I can´t use the property-set. (see images attached)
<?xml version="1.0" encoding="utf-8" ?> <manifest> <control namespace="MatrixControl" constructor="MatrixControl" version="1.3.0" display-name-key="MatrixControl" description-key="MatrixControl description" control-type="standard"> <data-set name="yAxisDataSet" display-name-key="yAxisDataSet_Display_Key"> <property-set name="yAxisCode" display-name-key="yAxisCode_Display_Key" description-key="yAxisCode_Desc_Key" of-type="SingleLine.Text" usage="bound" required="true" /> </data-set> <resources> <code path="index.ts" order="1"/> <css path="css/MatrixControl.css" order="1" /> </resources> </control> </manifest> |
Am I doing anything wrong?