Progress Icon in button type submit error - formio

I am creating two buttons using form.io which is the type of Submit.
But here I am facing an issue when clicking on any button all the buttons on that page enables progress icon.
How can disable that progress icon or how can I enable for only the one which is clicked

I solved this problem using css , display none for the image

Related

How to disable cut-copy-paste pop up in webview on text selection in Flutter

How do I disable the cut-copy-paste pop-up in a web view in Flutter? I want the text selection feature to remain as it is, but I don't want the pop-up to appear. I googled a lot but nothing worked for me.
I am using this Flutter WebView.

Display popup on disabled link in ADF

I need to display popup on disabled link click in ADF. As soon as I click on disabled link or button. Popup should be displayed. I tried with Action and ActionListner. But it will work, if button or link is enabled.
I can give shortDesc property to hover the text. But I am searching a way for getting a popup on click.
I surfed so many places. But I could not find it. Please suggest me some input on it.
Try to add another link and add a css to make it like a disabled link.
Or on the show popupbehaviour make the triger type = hover

Any links or HTML form items like button inside the Bootstrap 4 modal is unusable

I have cart icon, which when clicked loads the cart of the user in a Modal. However, any link or HTML form items like input or buttons that are within this modal are unusable. It can never be brought to focus nor clicked. I tried playing with CSS property z-index with no success.
Check site here.
Add any product to cart and then click bag/cart icon on the top right to see the issue.
Changing the pointer-events value in CSS solved the issue. wrapping the content part in an element with class modal-content is also fixing the issue as suggested in comments.

AEM issue in dialog of carousel component

I am a AEM developer, I have a issue in dialog of multifield. In carousel component(out of the box component) when we trying to add in the fixed list using path field, the selected path of image is saved if we click save. If u click cancel button and again trying to add image in the path field it is not getting added it is showing error.
I have tried to find a solution but we need to make changes in dialog.js I need a solution tat if i click the cancel button the dialog should not the save the things and it should open freshly again when the author opens again.

Switching between tabs in android

Hi I Have 3 tabs in one sceen..
first tab:some edittext fields with some data in disable mode.initially only one button will be there ie "edit",when u click "edit" then fields will change to editable mode.and "save","cancel" buttons will come.
My Requirment:if we change data in edittext fields and if u are trying to change tab I should display an alert box saying that "do u want to save data?"
can any one tell how can i achive this?
thanks in advance
Just implement OnTabChangeListner in main activity and in this check whether edit text is in editable mode.u can check it by using a flag. set flag when user press on edit button. if flag is true then show alert.