Posts by Vinicius.Beloni • 315 points
17 posts
-
0
votes2
answers169
viewsA: Change Tcontrol Enabled activates click event alone
I decided using Ttask.Run, after a while I discovered that it had an async function within the Onclick, then at the time of calling the "Funcaoquenaochamaporcausadesteproblema()" inside it was like…
-
0
votes2
answers169
viewsQ: Change Tcontrol Enabled activates click event alone
Fala galera, By changing the (Tbutton) button to disabled within an event, it triggers another event. procedure TFormulario.OnButtonExecutarOperacaoClick(Sender: TObject); begin //... //aqui está o…
-
0
votes2
answers260
viewsA: Sum between Divs and display result in another div
Hello, well, the . Blur is a function that is expected to lose focus, tags as span has no focus, just make a .hover instead of .blur that you can see perfectly well that your code works. I will post…
-
3
votes3
answers439
viewsA: How to get a similar behavior between the Garbage Collection of a Single-Page Application and a Multiple-Page Application?
I’m sorry if I seem ignorant about this topic, but to have a high wear in mémoria, I believe I must also analyze the way in which all this is being written, I will give an example, using var in…
-
0
votes0
answers59
viewsQ: Is my cache being shared by the pages able to leave it per session?
Good morning, you guys, So, I created a class to handle cache, but open the site in the same browser but with different users, one takes the cache from the other. how can I restrict by "session"…
-
0
votes1
answer43
viewsQ: Remove sharp(#) from Crossroads.js and run without it, how do I do?
Iae galera, so I use this lib to do the routes. however they come this # and even if I take, it still doesn’t work if I recharge in the browser F5 url: www.locahost.com/home = not found F5 url:…
-
1
votes1
answer94
viewsQ: Using only knockoutJs and jQuery can replace the durandalJs?
Good morning, you guys, First, I worked on a very large project using Urandal, this project was cutting-edge technology in web, durandaljs, Gulp, Entity framework 6 mvc 5 webapi2 and etc now the…
-
0
votes1
answer66
viewsA: How to open an Infobox by clicking on the BING MAPS marker
Well, it was just set config.infobox.setMap(config.map).
-
0
votes1
answer66
viewsQ: How to open an Infobox by clicking on the BING MAPS marker
Guys, I had to swap the google map for Bing’s, and now I can’t make clicking the marker open an infobox. The event is called, and it arrow the settings but simply does not appear... When I add a…
-
0
votes1
answer363
viewsQ: How to transfer a Workspace TFS to another user
Guys, I need to send my peddings changes to another user in team Foundation, for vs15 Is that possible? I usually did a shelve and downloaded on my other pc, however it was the same user in the…
-
3
votes1
answer101
viewsQ: Send email without it appearing in the mailbox
I don’t want those items sent in the real estate email. string emailOrigem = imobiliaria.Email; string password = imobiliaria.Senha; string html = getBody(dados); //aqui serve pra formata o html if…
-
5
votes1
answer356
viewsQ: How to change the template(visual) of an Asp net mvc5 page according to user
Here’s the thing, I need to read a property that returns me 1,2,3... and with it I determine what kind of visual the page will have, template01,template02... how I would do this using areas, and…
-
1
votes1
answer54
viewsQ: How to use areas only using root controller
I created an ASP.NET MVC 5 project where I had done one template, so now we’re going to have several templates divided by areas. Only that the controllers will be the same, so I didn’t want to…
-
0
votes3
answers3033
viewsA: Load page only when image is loaded
Try this: var img = document.getElementsByTagName('img')[0]; if (!img.complete) { img.src = "../imagens/sem_imagem.jpg" ; } EDIT: obviously I didn’t use jquery, because it’s much easier…
jqueryanswered Vinicius.Beloni 315 -
2
votes1
answer868
viewsA: Google maps map turns gray, but when I change the browser zoom back, what should I do?
I solved the problem, in this case, the map was being rendered inside a partial view. So I put the method to initialize the map in the view q loads the partial view. And then when it started it…
-
3
votes1
answer868
viewsQ: Google maps map turns gray, but when I change the browser zoom back, what should I do?
So guys, I have 2 parts of the system that I work on, where I use a map to show the address of the property or person. Except that in immovable works perfectly, but in the person (q has the same…
-
0
votes1
answer169
viewsQ: How do I use the web api for controllers and MVC for view(Front-end)?
hello, my problem is this, I’m doing an internship test and the guy asked to do an Asp.net project with mvc only for views, and web api only for controllers and another layer for the bank only that…