Skip to content
Advertisement

Remove specific HTML div when click on delete button using vuejs

So I have some input fields which are repetitive to fill different data. For every repetition, I also have a delete button. If I click on this delete button, then all the input fields related to this delete button should be removed. But this delete button is not working.

HTML

JavaScript

JS code

JavaScript

In the image, if I click the red delete button then Pincode, Supply chain,ODA TAT, FM facility, LM facility, RTo facility, RVP facility input fields should be removed.

In the image, if I click the red delete button then Pincode, Supply chain,ODA TAT, FM facility, LM facility, RTo facility, RVP facility input fields should be removed.

Advertisement

Answer

In the discussion in comments above, I was not understanding that you’re trying to control the visibility of individual rows separately.

The basic answer is still the same: have your “delete” button set a state variable, and use that state variable to control the visibility of the element you want deleted.

The difference is that if you’re controlling the visibility of ten different things, you need ten different state variables.

Typically your state data would already be in an array structure, since you’re presumably going to be wanting to put different data in each of these rows; instead of this kind of shortcut

<div v-for="index in 10" ...>

you would have something like

JavaScript

and your render loop would iterate over that rowData array (remembering that you shouldn’t have v-for and v-if on the same element):

JavaScript

The delete button in each row can pass the current row index on to the click handler, so the handler knows which element to update isShown for (by replacing rowData with a new array where rowData[index].isShown is false.)

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement