Interesting questions
-
0
votes2
answers230
viewsbecause the Hover does not overlap the div
I have a problem I think very simple. But I’ve done everything and nothing solves, as you can see in the print div who is with the hover she doesn’t stand on top of the div pai…
-
1
votes1
answer3267
viewsHow to place an Onclick event by calling a Javascript Function on a Link inside a GRIDVIEW on Asp.net?
I have a form containing a button that will open a query popup. In this popup, I make a query passing as parameters name and Cpf where the return of the query, creates a gridview where each record…
-
0
votes0
answers24
viewsIs it possible to put #ancora href in picture?
Most anchors are placed somewhere in the text, I wonder if it is possible to place the #ancora href in an image?
anchorageasked 8 years, 7 months ago Egidio Ely 31 -
0
votes2
answers538
viewsHow to pass parameters from Component to vuex in an Laravel and vuejs project?
I am using in my project Vuex with modules and Axios to work with the API created in Laravel, how to pass parameters in an edition of a data recovered from an API I have my Store export default {…
-
0
votes1
answer151
viewshtacces for Nginx
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?url=$1 Options -Indexes I need to convert that rule into htaccess for nginx…
-
0
votes1
answer184
viewsHow to resolve this error when using Room Persistence Library with Kotlin?
When I send run the app, I get a crash like this on the first call to the database: java.lang.RuntimeException: Unable to start activity ComponentInfo{.../....ActivityLogin}:…
-
1
votes2
answers1177
viewsSpring MVC + Spring Date Pagination
Good morning guys all ? I’m not having a problem in itself, just something I want to optimize. I’m using Spring MVC with Spring Data, to make the results pagination, I’m using Pageable inside my…
-
0
votes2
answers253
viewsQPX Express API - Flight list
I’m trying to use the QPX Express API to search for flight lists, the documentation has how to pass the arguments, but I do not know how to use, for example: Documentation: The simplest way to Try…
-
1
votes3
answers831
viewsCustomizing the Javascript confirm
Can you personalize the confirm() via CSS, or how to implement some modal in it? I tried to use Bootstrap but the JS code stops working: $(function() { $(".delete").click(function(){ var element =…
-
2
votes1
answer1139
viewsHow to create a class with a Navigationdrawer to use in multiple Activities?
I started studying Android development a little while ago, I saw that to use a Navigationdrawer the recommended is to use fragments to change a Framelayout in the main Activity, but in the new…
-
0
votes1
answer596
viewsGoogle drive api integration doesn’t work. how do I fix it?
i want to integrate the google drive api into my app. it runs but does not connect, as if it did not receive the information that was sent. How do I fix this? The code is the google itself that…
-
3
votes2
answers928
viewsHow to hide Axios request data in Javascript (JS Node)
Hello, I’m developing an application and setting up a user registration screen, but I’m wondering if it’s possible to hide the data that Axios is requesting for the API. My Javascript code, which I…
-
0
votes3
answers137
viewsHelp with Append()
Follows illustration for clarification I’m stuck on a logic and my problem is this, I have this html code: <ul class="card"></ul> <button> Aperteme </button> and do an action…
-
1
votes0
answers210
viewsUnknown server error after updating the cake vendor folder
While updating files from my vendor folder on the server I had the following errors: Fatal error: Call to Undefined method Cake View Widget Selectboxwidget::outputError() in…
-
-2
votes2
answers65
viewsI cannot assign the input field value entered by the user to a variable
I’m a programming novice and I’m creating a form to collect user data and then send that data to Firebase Database. I am collecting the data entered into HTML by input fields with a function of the…
-
0
votes0
answers75
viewsStart reading the beginning of the string list
How do I after adding a string to a list (can be on list A or B), my code goes back and starts reading the beginning of the string list, or the first string? I have a list with 20 strings. But it’s…
-
6
votes2
answers323
viewsShow command executed when SQL error occurs
Considering the following command executed BEGIN TRY -- Generate a divide-by-zero error. SELECT 1/0; END TRY BEGIN CATCH SELECT ERROR_NUMBER() AS ErrorNumber ,ERROR_SEVERITY() AS ErrorSeverity…
-
2
votes1
answer105
viewsHow can I compare the data in the same column?
"Create a function (named fn_bo_varios_states) that takes as parameter the code (INTEGER) of a victim and return (TRUE or FALSE) if she has already registered reports of occurrence in more than one…
-
1
votes2
answers148
viewsWhat does this line mean? --> $.ajaxSetup({ scriptCharset: "utf-8" ,contenttype: "application/x-www-form-urlencoded; charset=UTF-8" })
Hello, I’m analyzing a program already made to learn, it’s working, but I got to this part and I’m not finding online the meaning of it. Could someone help me? Follow the line of code: $.ajaxSetup({…
-
34
votes1
answer33629
viewsWhat is the difference between ISNULL and COALESCE in a survey?
I’m having second thoughts about using the ISNULL and COALESCE. Currently creating a query in SQL Server, I was left with doubt about ISNULL and COALESCE, I did some research and I was able to find…