Drag drop Marker
Drag drop Marker
I'm working on a app that I want a rich edit that is limited to just a single marker list with various levels. Each list item as an icon used from a list style. I would like a user to be able to click on the icon and drag the item from one point to another. I can't seem to find a way to make this occur. Any suggestions?
-
- Site Admin
- Posts: 17520
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: Drag drop Marker
Well, you can fill the editor with the desired content and make it read-only.
You can drag data from an editor to other places. The demos are here: https://www.trichview.com/forums/viewto ... f=3&t=3407
But there are problems:
1) Like in most editors, list bullets cannot be selected; you can select only content bulleted paragraphs.
Possible solution: do not use true bullets&numbering, use text or images instead.
2) Any content can be selected and dragged. For example, multiple bulleted paragraphs.
Possible solution: use OnSelect event to adjust selection. In this event, use SetSelectionBounds to select only a desired content (set some flag to prevent infinite recursion)
You can drag data from an editor to other places. The demos are here: https://www.trichview.com/forums/viewto ... f=3&t=3407
But there are problems:
1) Like in most editors, list bullets cannot be selected; you can select only content bulleted paragraphs.
Possible solution: do not use true bullets&numbering, use text or images instead.
2) Any content can be selected and dragged. For example, multiple bulleted paragraphs.
Possible solution: use OnSelect event to adjust selection. In this event, use SetSelectionBounds to select only a desired content (set some flag to prevent infinite recursion)