Posts by PauloFlesch • 102 points
15 posts
-
1
votes1
answer132
viewsQ: Display block does not work in Safari
I’m trying to change the css of a javascript loading. The element is as display:none and when I submit I change this element to display:block and the same appears on the screen. The point is that…
-
0
votes0
answers310
viewsQ: wp-admin does not load scripts
The client installed SSL on their site and after that some things didn’t work anymore, such as images, scripts, css. Then I installed the Insecure Content SSL plugin and fixed it. However wp-admin…
-
0
votes3
answers133
viewsA: Update in database not working
Your connection to the bank is in that header.php? And on that line if($update_data) { it should be like this if(mysql_query($update_data)) { I hope I’ve helped :)…
-
1
votes1
answer898
viewsA: ng-options "Selected" does not work
I was able to solve this problem by passing the whole object instead of passing only the state ID ( stateId ). In ng-model you need to pass all the selected object, for example: { "id":2,…
-
2
votes1
answer898
viewsQ: ng-options "Selected" does not work
I am using the ng-options function and it is listing correctly, only it is not showing the value marked as default: selected Code: <select class="form-control"…
-
0
votes0
answers59
viewsQ: Datatable . Visible() does not work
I’m using this library angular-datatables, but the function visible is not hiding the desired columns while loading the page. Follow the code that should hide the columns: $(document).ready(function…
angularjsasked PauloFlesch 102 -
1
votes3
answers436
viewsA: Doubt about changing variable in another Angularjs controller
research on UI-Router Angular. Example: .state('customers.edit', { url: '/edit/:customerId', views:{ '' :{ templateUrl: 'views/customers/edit.html'},…
angularjsanswered PauloFlesch 102 -
1
votes1
answer184
viewsA: Sub buttons in Angular dataTables
It follows the way I solved: $scope.dtOptions = DTOptionsBuilder.newOptions() .withLanguageSource('js/plugins/dataTables/pt.json') .withDOM('<"html5buttons"B>lTfgitp') .withButtons([ {…
-
1
votes1
answer184
viewsQ: Sub buttons in Angular dataTables
I’m using the Datatable plugin (https://l-lin.github.io/angular-datatables). And I need to make the export buttons to be sub-keys,where there will be an export icon and clicking this will be listed…
-
-1
votes2
answers506
viewsA: Curriculum attachment via e-mail in Codeigniter not working
Missed by enctype="Multipart/form-data" there in the form
-
0
votes1
answer77
viewsA: Problems with MYSQL data
Hello, Test this select. SELECT *, (str_to_date(CONCAT(agenda.year,'-',agenda.month,'-',agenda.day), '%Y-%m-%d')) as dta from agenda WHERE agenda.day >= 26 and "agenda.month >= 04 and…
-
-1
votes1
answer37
viewsA: formultario filters php
Hello, I don’t know if I understand it very well. But you can’t give an "empty" using an innerHtml = "" in the element and reassemble the datalist.
phpanswered PauloFlesch 102 -
1
votes2
answers2804
viewsA: What is the "connectionString" connection string?
Dude you can create the connection string using a .udl. extension file Just create a text file, change the extension to "udl", open the file configure with the data to connect to your database (…
-
0
votes1
answer187
viewsA: not sending form via phpmailer
Good morning expec, Why don’t you use the Mail function? manual link Mail Php I find it simple and functional, so much so that I’ve used it in a bulk email sending tool. I hope I’ve helped.…
-
1
votes1
answer112
viewsA: How to Save Data to Generate a PDF?
Boa Raylan, That depends, will it generate a lot of network traffic? Because ordering from the server long strings, or too much "text" can overload your network, isn’t it interesting you save the…