Hello,
I’m trying to group couple of buttons of a TreeDataGrid under a PopupButton. Below is my code.
<treeDataGrid id="tasksTable"
width="100%"
dataContainer="taskPlanDc"
hierarchyProperty="parentTask">
<actions>
<action id="create" type="create"/>
<action id="edit" type="edit"/>
<action id="remove" type="remove"/>
<action id="rasci" type="rasci"/>
</actions>
<columns>
<column property="taskName"/>
<column property="taskType"/>
<column property="frequency"/>
<column property="priority"/>
<column property="location"/>
<column property="asset"/>
<column property="estimatedHours"/>
</columns>
<buttonsPanel id="buttonsPanel"
alwaysVisible="true">
<popupButton id="createPopupBtn" caption="Create">
<actions>
<action id="create" type="create" caption="New"/>
<action id="childTask" caption="Child"/>
</actions>
</popupButton>
<button id="editBtn" action="tasksTable.edit"/>
<button id="removeBtn" action="tasksTable.remove"/>
<button id="tasksTableRasciBtn" action="tasksTable.rasci"/>
</buttonsPanel>
</treeDataGrid>
But I’m getting the error stated in the heading of this post as below.
Thanks,
Hari