ASP.NET MVC Ajax Form LoadingElementId

Can anyone tell me how to refer to the id of the download item?

I suppose I need to write the identifier of an html element such as div or img, but I cannot put the div or img invisible until it is needed, and I also can not get it to work.

I know that is far from being answered. Please, help!

0
source share
2 answers

I got an answer a long time ago. I just need to set the div visibility:hidden style and write its id and the id of the loadable element in an Ajax form. Hope this helps.

+2
source

visibility:hidden did not work for me.

The problem was solved with display:none

+3
source

Source: https://habr.com/ru/post/917027/


All Articles