Vue on drag one player name , drags the whole list - vue.js

I am using vue-draggable and trying to drag player name. It contains two draggabale list where it can drag items from one to another.
From the first list when I drag items, it drags only one player name and that's correct.
But when I drag items from second list, it drags as a whole group. If the second list contains two player name as San and Kim. When I drag Kim , it drags San at the same time. Is there a way to make this second list teamByTime2 to drag only one name at one time, like as first list dataList3?
I have uploaded array objects on JSFiddle code as well. This is how my array looks for first and second item list.
Below is my code on JSFiddle
https://jsfiddle.net/ujjumaki/78vsbu3q/26/

All the list arrays need to have the same model.
Said otherwise, dataList3 and Reservation_people need to contain the same kind of objects.
If it's not the same as what you receive from the API then you'll have to transform the data model after fetching and before saving.
Here is a working example: https://codesandbox.io/s/admiring-ptolemy-1yg9w?file=/src/App.vue:1227-1245

Related

Vue - How to display the clicked item and the previous/next item of an array

I have two elements in two rows next to each other:
I have entered them all in an array of objects and called them through props to display them in the left one.
Now what I want to do is when I click on any channel from the left item, it shows in the right with the first item before it and after it in the array, so I am going to use $emit with #clicked function to get an event to call it on the app.vue. But I don't know what to do after to get it displayed.
I feel I should create a new component but I'm at a loss about the elements within.
Edit: Sorry I forgot to mention, the picture is the design not the result of my code, I could only create the left one "list of stations" and have a problem doing the right part based on a click of the left part
You can indeed create 2 components. 1 component having a list of all the stations. another component displaying the details of the radio station.
The moment you click a station in the list, it sends an event and updates a property in the vue.app. This could for example be called selectedStation.
your component that shows the detail of the radiostation just receives a prop with the details of the station.

multiple items in wagtail carousel

I want to have 4 different items in a slider(Product Name section). And in the next slider, again 4 items. How to achieve this in wagtail?
Below I have given screenshot how it should be.
Screenshot:
This one is in static, but I want it dynamic. For every 4 item, it should create one slider and so on.

Access VBA: Attachment image won't load in form

I have a table that contains items, their location, and an attachment photo of the item. The location is set up by row #-shelves #-shelf #. For example 2-3-4 would be in the second row on the third set of shelves on the fourth shelf down. I have another form that allows users to search by shelf. Basically, they enter the first two numbers and I do this.
DoCmd.OpenForm "fReview", , , "Location Like '" & locStr & "*'"
Where 'locStr' is the string containing 2-3 (the first two numbers), and when the form fReview opens, it should show all items on all shelves of the second row, third shelf unit.
This part works just fine. However, when fReview opens, the image part of the attachment field that I put on the form stays blank. The rest of the fields populate with no problems. When I close the form and open it again normally (with no Where condition), the image works perfectly (although it does blink a few times like it is refreshing multiple times which is weird). The form is linked to the table, so it should all be directly linked, so I don't know what's happening.
So, I created a brand new tiny database to test some things, and figured out my problem. Thought I'd share it, just in case somebody eventually had the same problem I did. It was actually pretty simple.
When I added the attachment field to my form, I just dragged it over from the "Add Existing Fields" bar. This linked the Attachment.FileData as the control source for the field, which seemed ok. Turns out that that isn't right for some reason. If you change the control source to simply be the field name, it works.

Core data relationships: popup button can select a relationship but the name is not displayed

After a lot of time wasted due to a core data relationship fault, now I'm able to bind a popup button cell to an entity relationship.
The only problem now is that when I select and browse all the options the names are displayed, but when I choose the relationship and click on it, the name disappears.
The entities are very simple:
So a person can have 0 or 1 home, a home can have 0 to N people (inverse relationship).
I have an array controller named "people" which is in entity mode, bound with the people objects of managed object context.Same for "homes", which is bound with the homes objects.All the names in the table views are displayed correctly, except for the popup button.This is what I see when it's selected:
And this is what I see when it's not selected:
So like you see the cell is empty.The popup button's bindings are:
1. Content: "homes" arranged objects;
2. Content values: "homes" arranged objects.name;
3. Selected object: "people" selection.home .
So coming to the question: why does not the popup button display the relationship name when it's not selected?
PS: The table view is cell based.
That has been a pain to me, and lastly I solved it so there's the explanation for who will find my same problem: I was mixing view based table views with cell based table views.If you want to bind a cell based table view, do not bind the table view content to the managed object context, but bind it's columns.For the popup button I cancelled all bindings and bound it's column this way:
Content: "homes" arranged objects;
Content values: "homes" arranged objects.name;
Selected object: "people" selection.home .
So this may seem the same, but now is the table column to have these bindings, not the button cell.And now all works fine.
Thanks for your answer! I tried to solve such a problem for a couple of hours and the problem was that I had bound the table content to the controller. Now I just bind the column to the controller and everything works as expected.

Extjs4:Multiselect Option

In my form,i have a list of employees in a combo box and i need to map some employees to particular department.I need to change the combo-box to List box.Scenario is as follows,
1. List A contains all employees.
2. If i click 'Add' button the selected employees must move to list B
and list A must contain remaining employees
.
I searched for List box but i couldn't find in extjs4.
Is there any example or link for multiselect listbox in ext-js4?
Thanks
There is no built-in ListBox widget in ExtJs4. However, Ext.view.View may become an listbox after some manipulations.
Here is an example of such a tuned View. Demos may be found here, here and here (this one looks like just what you need).
You can create two such listboxes and the "add" button. Then assign handler to button which would remove selected item from the first listbox's store and add it to the second's store.