Interesting questions
-
-1
votes1
answer21
viewsPass array to modal with JQUERY
Talk personal, all right? I have a little problem here that is taking my sleep. rs I can pass variables to the modal quietly as in the example below: Button that switches the variable to the modal:…
-
1
votes0
answers110
viewsLoop a javascript DOM element - Each element in a <li>
I am developing a memory game and the icons they are not going one for each li but every loop appearing one more icons in the corresponding li. In the last li appears 16 icons instead of a. const…
-
1
votes1
answer470
viewsHow to redeem a key in a Json using Gson (Google)
good night. For the first time I am manipulating a Json file with Java, because many colleagues have always told me that it is very easy to manipulate data, especially with the Google library…
-
1
votes2
answers143
viewsHow to disable Forms Authenitcation for the Web API?
I have an Asp.Net MVC project and inside it has the Web Api, when a request sends an invalid token, Forms Authentication redirects to the login page, but I need it to only return an Http 401 error,…
c# asp.net-mvc asp.net-web-api web.config forms-authenticationasked 8 years, 5 months ago Fábio Lima 81 -
2
votes1
answer94
viewsHow to implement jQuery Filer Plugin?
I’m trying to implement a component for uploading images with thumbnails, and I’ve spent a lot of time looking for one that suits my needs. After a day of searching I found jQuery Filer. Anyway, I’m…
-
0
votes2
answers150
viewsHow to pull all rows of the database in php but only showing the value of a specific query column once?
I’m having a problem, I have a PHP screen that shows everything from a database query. So far everything ok, but I need to show all information without replicating the requested column. Follow the…
-
1
votes1
answer80
viewsVariable stay rounding and spoil calculation
I have the following SELECT: SET @peso := 0; SET @ganho := 0; SELECT @peso := (SELECT SUM(peso)/1000 FROM entrada WHERE entrada_id = A.entrada_id)+@ganho AS peso, @peso, @ganho := (SELECT…
-
2
votes3
answers2032
viewsHow to relate tables in Mysql to more than one entity?
How can I relate a table(entity) to more than one entity in the Mysql database? following the following example... I have the tables: fornecedores, clientes and telefones. The fornecedores, may have…
-
0
votes1
answer68
viewsJobject.Parse returning null
I’m not very suited to Youtube Api V3. But I watched a google Developers live where the google operator shows how to list the activity of a particular channel. Based on that I executed via GET at…
-
-1
votes1
answer90
viewsRead file does not insert accents
if(isset($_GET['rf'])){ $filename=$_GET['rf']; //$path=$_SERVER['DOCUMENT_ROOT'].'/'.$filename; //echo $path; if(file_exists("subs/" . $filename)){ header('Content-Type: text/plain');…
-
0
votes1
answer1716
viewsExtract products from an Nfe XML
I am developing a Java application that I will need to extract XML data from Nfe, Extract some data I can map the Tags as issuer recipient among others. But when I need to extract products from Nfe…
-
0
votes1
answer96
viewsUse the select tag to change the content of the page?
I’m starting to use Javascript and would like to know how I can use the select so that according to the language chosen, the page show me a different return (its characteristics).…
-
1
votes1
answer332
viewsUsing Navigate to upload more than one link to Webbrowser
How to do the Navigate go to the next link after the first one has loaded? I’ve tried a few things but failed. nomedobrowser.Navigate("http://reidocrime.com/");…
c#asked 11 years, 1 month ago Fernando Neves 117 -
1
votes2
answers51
viewsHow to simplify the process of classifying a value-based hash
Oops, I’m new to the site, and I’m new to Ruby. My question is: Is there a more efficient way to classify a hash according to the values? I did the code below, but I’m sure it’s not the most…
-
1
votes0
answers75
viewsCalling in PHP the Jasperreports file with Oracle database
I have some files generated by Jasperreports (.jrxml) consulting an Oracle database. My question is in direct execution with parameterized in PHP (codeigniter framework), MVC standard. I have tried…
-
1
votes2
answers724
viewsRazor in javascript file
I have a little code that works on _Layout: $.ajax({ type: "POST", url: "@Url.Action("Action", "Controller")", success: function () { //Seu código aqui ... } }); So far, so good, only _Layout is…
-
-1
votes1
answer40
viewsc# problems in calling screens that even the teacher could not solve
Mens, I’m taking a DS technical course, I’m in the TCM phase and I was wondering if you can solve or help me with this problem: Next: I am doing a CRUD in c# win Forms and I came across an error…
-
1
votes2
answers889
viewsTransfer content from one stack to another C++
I need to solve a question, she asks me to display the contents of a stack in reverse form, I thought a lot and I came to the conclusion that it is only possible to create an auxiliary stack and…
-
3
votes1
answer223
viewsOverride Property() in Child Class
A few days ago I asked a similar question to this, however, the method employed in creating the property was via decorators (@property and @name.setter). Here I am creating the property via function…
-
1
votes1
answer601
viewsNg-repeat and Angularjs Beginner Error
I’m starting at the angular and I still don’t quite understand the workflow of it. The code below does not work: <body ng-app> ... <div ng-controller="Grid" class="gol-grid"> <div…