Posts by FelipeM • 459 points
7 posts
-
5
votes2
answers365
viewsA: Do not create folder when cloning Gitlab project
You can make git clone with a . in the end, the . replaces the default path from where the project will be created. git clone url-projeto .
-
1
votes1
answer35
viewsA: Comparing two arrays in JS
The methods: document.documentElement.textContent.split(' ') e document.documentElement.innerText.split(' ') already return an array, so you should apply the includes at index 0 of pageWords array…
javascriptanswered FelipeM 459 -
2
votes1
answer95
viewsA: classList.remove does not work within addeventlistener (Vanilla JS)
That one seeMore[0].addEventListener is in a different context from document.addEventListener, you won’t be able to use the var fullText here. For this, you need to get the element again like this.…
javascriptanswered FelipeM 459 -
2
votes1
answer1069
viewsQ: Open dropdown over the div
Hello, I have a dropdown made with ui-select, which does not open above the rest of the site. as you can see it opens only up to the limit of the div I’ve tried the examples I found on websites.…
-
6
votes1
answer325
viewsQ: Run Insert in Migrations Entity Framework
I am developing an ASP.NET MVC project with Entity Framework Code First. I already checked the bank and managed the first Migrations, my question is: has how to execute a insert right after creating…
-
3
votes2
answers1509
viewsA: Order queue in c#
Hello! Since you said it doesn’t necessarily have to be a queue, I did it with a list, see if it fits you. List<string> Fila = new List<string>(); //Declaração da Fila string opcao =…
-
12
votes2
answers732
viewsQ: How to leave an invisible Tabpage inside a Tabcontrol?
How can I leave a certain invisible Tabpage inside a Tabcontrol ?