Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ie. works but does not on Group by

1. ListGrid1 on click filters the data on ListGrid3

Code Block
langxml
<ListGrid id="ListGrid1" ..>
<recordClick>ListGrid3.fetchData({pk:record.proposal_id});</recordClick>
..
</ListGrid>

<ListGrid id="ListGrid3" ..>
...
    <listEndEditAction>next</listEndEditAction>
    <showFilterEditor>true</showFilterEditor>
    <canEdit>true</canEdit>
    <canAcceptDroppedRecords>true</canAcceptDroppedRecords>
    <canRemoveRecords>true</canRemoveRecords>
    <xsi:type>ListGrid</xsi:type>
...
</ListGrid>

2. ListGrid2 drags and drops the items wanted on it

Code Block
langxml
<ListGrid id="ListGrid3" ..>
...
    <canDragRecordsOut>true</canDragRecordsOut>
    <dragDataAction>copy</dragDataAction>
...
</ListGrid>