Two column drag-and-drop in Flutter - flutter

I'm making a drag-and-drop feature with Flutter where users drag values between two columns. I created two DragTarget, one for each column, and lists to keep track of the data for each column. When a Draggable is accepted, I add it to the list, and for onLeave, I remove it from the list. However, there is a duplication issue where the draggable appears both in the column it just left and the new column it was accepted into. I'm thinking this may be due to only one of the DragTargets updating at once, but it seems like that shouldn't happen. Any ideas on how to design and handle the data here?

Related

Merge two parselivelists of different tables together Back4App flutter

I'm trying to merge two parselivelists together and show the data accordingly in decending order like I have two tables one for posts and one for reposts that users share. I want to show their data together in a list I have tried to put both the lists in a Column it shows the data of both, but the problem is it displays them separately not merging them together. I have tried using FutureBuilder and ListView.Builder but not able to do it. Any help would be highly appreciated.

nested ReorderableListView flutter dart - drago and drop lists inside list

I've been trying ReorderableListView two create a list that you are able to drag and drop but also that contains items that you are also able to drag a drop. I know there is the package drag_and_drop_lists but don't recommend it to me. I want to manage to built something like this without the need of a third party package.
Also, it is dynamic and the issue that I am having is with the items inside the list, I just don't know which list is calling and only returns the item number that is going to replace but if I have 4 lists each one with x amount of items, how can I know which list is replacing ?
Link to example, don't have reputation :(

How to create page break between elements inside list entry?

My Jasper Report has Detail element that holds List element. Every list entry of which contains number of tables.
I need to add page break between those tables.
The problem is that it is not possible to add line break. I am able to drag it between tables but the report stops working after adding it. It turns out that break is not supported in such places.
Is there a way to workaround this? Currently I'm thinking of adding some fake element that would consume some space but will be invisible, however it is not as simple.
I know it could be achieved by introducing sub-reports, but this requires complete redesign of my report so it is not an option for me.

Dynamically removing table from rdlc report

I'm creating an SSRS report in VS2012.
Under Tablix Properties I can show or hide a table using an expression which uses a boolean parameter; but this leaves a gap in the report.
Is there a way I can just remove the table?
You could call a subreport and determine different subreports based on a variable. You cannot remove space with SSRS to my knowledge of it, it is not designed to remove space, just perform different actions on objects that take up space. I don't even think you can resize the objects dynamically unfortunately. You can cheat though and make two subreports, one with the supposed table and one without. Then when your variable gets hit it calls one and not the other. Since a subreport can change sizes that is a way to thus trick the system's language limitations. It may not fit your needs but it is a thought that could in theory solve this problem.
I think it depends on the report layout and all sorts. I created the simplest case:
From Designer mode you can see it's just three tables in the report, nothing else. The middle table's visibilty is parameter based. In this case, SSRS does make an effort to shift the last table depending on whether the middle is visible:
In this case you still have maybe too much whitespace showing. There are various ways around this. One example is embedding the middle table in a Rectangle that extends to top of the last table, then moving the visibility expression from the table to the Rectangle. In Designer:
End result, looks better:
I guess all I'm trying to show is that SSRS does sometimes move things around based on visibility, but you can also apply extra control using tools like Rectangles to control visibility and layout.

Eclipse Virtual TableViewer filtering and Sorting? [duplicate]

Our application is an RCP appliction and needs to display table of several thousands items. For this reason, we're using SWT.VIRTUAL in our TableViewer. That works pretty well except for selection.
We're having following issue :
Our TableViewer support sorting and filtering. When we use a virtual tableviewer, changing the selection does not preserve the current selected item but the row currently selected.This leads to another item being selected.
e.g: If Item 'A' present at the 5th row is selected by user and sorting is performed, then after sorting the Item at the 5th row gets selected instead of the Item 'A'.
Using a non virtual TableViewer, everything works fine.
We tried to go into debug and found out that the cache from the AbstractTableViewer.VirtualManager class seems to be up to date with the model.
Forcing the cache to be used in the AbstractTableViewer.virtualSetSelectionToWidget() can be a possible approach.
We have tried to implement a solution suggested in https://bugs.eclipse.org/bugs/show_bug.cgi?id=338696. However it didn't work.
Please suggest some pointers or alternative work around.
Thanks for the answers.
As a workaround for working with huge tables I would suggest you to take a look at the Nattable project http://www.eclipse.org/nattable/. It supports everything you need (sorting, filtering, tree structured elements, lazy loading etc.). We successfully use it in our project, where it is necessary to display hundreds of thousands elements as a tree with around 160 columns. It also has some pretty cool styling features, which can make your table more user-friendly and interactive. Hope this helps