Interesting questions
-
2
votes1
answer368
viewsHow to embed multiple classes into one in CSS?
Use Bootstrap and it has the following classes for tables: .table .table-striped .table-bordered .table-hover .table-condensed In my application I have several tables. For easy maintenance, I…
cssasked 11 years, 10 months ago user7261 -
1
votes0
answers73
viewsWoocommerce - Change the transport class if a field is filled at checkout
I am willing to change the tax class (or zero taxes) of a purchase if a certain field is filled at checkout, which would be the State Registration, if the company or individual has state…
-
3
votes2
answers95
viewsLabel in loop on Foreach
I’m having difficulty showing information that comes from an object to display on a Label, returning in list form. //Pegando os dados do Rest e armazenando na variável usuários var usuario =…
-
0
votes1
answer98
viewsError in JSP page
Good evening, everyone, I am making a page in JSP, where the user informs 2 values and through a method, I do the sum of these 2 values and presents just below the value of the result. However the…
-
0
votes1
answer165
viewsWhat is wrong with this Chrome extension?
I made a small extension in Chrome, and it’s not working properly. My extension simply randomizes a word between one of those randomVals and displays. I’d like you to help me figure out what’s wrong…
-
1
votes1
answer108
viewsRead user input via Javascriptexecutor or promt in Selenium Webdriver C#
I have 4 test environments. When executing the Selenium script, I want the user to inform soon after the browser opens, in which environment the script should be executed. So the script will direct…
-
3
votes2
answers126
viewsEdit MVC with Foreign Key
I need to upgrade my editLivros, Next I’ll explain my project. Autores ------- IdAutor Nome Livros -------- IdLivro Nome IdAutor I am registering the Authors and Books correctly, when I am…
-
0
votes1
answer62
viewsCharts.js Problem to bring Data to the chart!
I have a Google Charts chart that works perfectly bringing the database data through ajax, but I tried to do the same with Charts.js and I can’t. I would like to know how I put real data on the…
-
2
votes1
answer610
viewsHow to handle the FPU stack in the x86 Assembly using NASM and functions in c?
I’m trying to do this operation (y = 0.299*red + 0.587*green + 0.114*blue) in Assembly mode protected nasm integrating c with Assembly in windows, but regardless of the input values the result is…
-
1
votes2
answers2263
viewsHow to make CSS reminders when passing mouse cursor?
How do I exquisite one tooltip by hovering the mouse over the question mark ? See the example in the figure below : You can also view the example by clicking here.…
cssasked 10 years ago Gladison Neuza Perosini 861 -
-1
votes1
answer326
viewsDjango: Show report earnings and expenses of a Django management system
I have a management system in Jango and would like to save in one place the report of all winnings (Paid=True), defaults (Paid=False) and expenses of the month or period in Jango admin itself, in a…
-
2
votes2
answers1175
viewsHow to position the cursor at the beginning of the field?
How can I make a component (JTextField, JFormattedTextField and others) when being clicked/gaining focus, position the cursor in the position 0 component, especially when the component is already…
-
0
votes1
answer678
viewsProblems referencing Javascript and css files - Asp.net Core
I’m trying to adapt a layout model that I found on the net, in my Asp.net core, but I’m not being able to make it work.... I created a Content folder at the root of the project and within it I have…
-
0
votes1
answer25
viewsCompare if dates are in the period
I need to know from the user’s birth date, if he was born in the period of the military dictatorship. The military period in Brazil began on 04/01/1964 and ended on 03/15/1985, and all who were born…
-
0
votes4
answers45
viewsHow to pass a text from the database to display it as a link on a website
Hello, I’m making a site in php and html, linked to a database in mysql. And I have a table of news in the database, with the idartigos fields, title, text and link. The link is running in text and…
-
0
votes1
answer672
viewsDropdown menu dynamic html
Hello, I have this page in html and would like to know how I can do so so that when changing the item chosen in the dropdown menu, the html fields change. <fieldset id="fsItem">…
-
0
votes2
answers1157
viewsexceeded the 'max_user_connections' Resource
I’m not sure what the reason for the error I’m having but it seems that it is something related to open connections in the bank, where error is occurring if the application tries to create more…
-
10
votes1
answer130
viewsFunctionality of ":" in C#
Recently I was developing a C# application with Visual Studio and I came across a somewhat unusual situation: public void Upload(object model) { FOO: var text = "teste"; } In the code, FOO: does not…
-
0
votes1
answer302
viewsParallax.js does not work in Chrome for Mobile
The effect Parallax.js (http://pixelcog.github.io/parallax.js/) works only for desktop browsers. Something can be done to make the effect visible on mobile devices? I’m using the default classes and…
-
1
votes1
answer44
viewsProblem in LINQ Query
In my job I need to return a list of a query LINQ. I have an expression that depending on some conditions she adds up Where to return this function. Follow the code: public HttpResponseMessage…