Posts by Bruno Aparecido da Silva • 363 points
22 posts
-
0
votes0
answers297
viewsQ: Angular, list is not updated after an deletion or insertion
I’m developing an application with angular and a api rest in PHP. I am performing a very simple CRUD, just to learn. My problem is when I will perform an Insert/delete and soon after I will recover…
angularasked Bruno Aparecido da Silva 363 -
1
votes3
answers135
viewsQ: What is the correct MVC concept to be addressed?
I’m working on an Laravel project with the concept MVC and I had some doubts. Let’s say I have one customer management (CRUD), so I have a View (Screen with customer data, Textbox, Combobox ...) I…
-
0
votes1
answer96
viewsQ: Javascript does not load function
I have a javascript file 'zip code'. where there is a method called displays(); but when I run this method in my current file that is on the page next to HTML, it doesn’t work, why? cep.js $…
-
2
votes1
answer2714
viewsQ: Ajax Request with Laravel 5.4
I’m trying to perform an example of requisition Ajax with the Laravel 5.4. The example for testing is simple, just enter a numerical value in a field input=text in my View and leaves the field to…
-
1
votes1
answer3340
viewsA: request value of a checkbox in Laravel
Just set the checkbox in HTML. So with pure HTML <input type="checkbox" name="status" value="1"> and so with the Lockable {!! Form::checkbox('status') !!} If the checkbox is not selected it…
laravelanswered Bruno Aparecido da Silva 363 -
4
votes1
answer2577
viewsQ: Open html page in modal
I have the following html pages: client record, cadastral and contact record. In my client record I have two Buttons: id="btnCadastroEndereco" and id="btnCadastroContato". When I click on these…
-
1
votes1
answer55
viewsQ: Recovering item in another function with jquery/js
How can I save an item via jquery to be used later? I have the following structure, where it retrieves the item of an onclick event from a button, retrieve the row of the table to which this button…
-
0
votes0
answers328
viewsQ: Problem with Retrofit Return on Android
I’m trying to connect to the local network, using the RetroFit. In the local network I have a Rest that returns a json, but when I run the event to make it happen, an error happens I have an…
-
0
votes0
answers36
viewsQ: Web service connection problem - Networkonmainthreadexception
I’m running a method on android, where I try to perform a recover some information from a webservice ... I stopped to debug and whenever it will connect it falls in the catch and when it continues…
-
0
votes1
answer508
viewsA: Connection php to Postgresql database
The problem was the version referring to wamp and its tools, I uninstalled the version using 2.* and installed the most current version. performed the procedure again to enable pgsql by removing the…
-
0
votes1
answer508
viewsQ: Connection php to Postgresql database
Problem when connecting to Postgresql database using PHP. When I run the function pg_conect(), the following error occurs Fatal error: Call to undefined function pg_connect() already added the…
-
3
votes0
answers161
viewsQ: Generating Report with Reportviewer
How is it possible to generate a report of an object and its dependencies in Report Viewer with C#? I have a Car class, where each Car has its Models. I can display a report with the Cars and Models…
-
2
votes1
answer398
viewsQ: Loading reportviewer through an object
I am using Report Viewer to do some reports, but I am not able to access some data from my object. instead of making a direct connection to the database I pass a Datatable as a reference, and in…
-
1
votes0
answers44
viewsQ: Changing color of datagrid Row with WPF C#mahapps
How to change the font color of a Datagrid line in WPF using the mahapps framework?
wpfasked Bruno Aparecido da Silva 363 -
1
votes1
answer81
viewsQ: How to assign a style to all objects at once in WPF
It is possible to create a style in WPF where will be using for all components of the same type, so it is not necessary to call the Style for the component? My idea is to create a style as for…
-
1
votes3
answers789
viewsQ: Problem sorting sql with orderby Date in postgresql
I have the following query that results in the union of the total sum of an account and the installments select sum(total) as total, datavencimento from ( select sum (con_valoraserpago) as total,…
-
1
votes0
answers118
viewsQ: Correct path to get into a folder outside the www server using php and linux
I have a program in php on a linux server and wanted to know how it is possible to access an element that is outside the www folder. for example, I have the www folder and a folder for my project…
-
0
votes1
answer163
viewsQ: Add tooltip to button that came straight from Php via Ajax
On my PHP server I return some data between them a button $HTML = " <button id=\"btnExcluir\" style=\" width: 55px !important;\" onclick=\"Excluir();\" type=\"button \" data-toggle=\"tooltip\"…
-
0
votes1
answer611
viewsQ: Retrieve dynamic checkbox value in php
I have a table where one of your columns is a checkbox, I need to do when the checkbox are selected click on a "Delete Selected" button where it is possible to recover for me all the values of the…
-
1
votes1
answer658
viewsQ: Put audio file to download and listen in php
I have some audios on my server and wish to put them online so that it is possible for the client side to have access, both to listen and download. I am working with php and a linux server, a debian…
-
2
votes1
answer231
viewsQ: How to change the size of a screen through an event in C# WPF
How is it possible to make a change in the size of a Form(Window) in WPF, by changing its Heigth and Width and thus increasing and decreasing the screen according to the reported values? For…
-
3
votes1
answer9941
viewsQ: Returning difference between days and months
I am developing a C# function that calculates the interest applied to a given account. for this it is necessary to know the correct difference between days and months. How is it possible to execute…