Posts by Silvio Delgado • 156 points
7 posts
-
1
votes1
answer1017
viewsA: How to print keeping the page layout?
To print the way you want, use "col-xs-6" in place of "col-sm-6". Bootstrap understands printing to be the equivalent of "xs".
-
0
votes1
answer39
viewsA: Angularjs and C# - model does not bring value if not changed
I found the reason: I had to format the value returned in javascript, before sending it to the action. The system presented conflict (typed value: 123.45 - presented in Javascript as 123.45 and…
-
1
votes1
answer20
viewsA: Autocomplete with > after inserting signal - on object
I found the plugin PHP Enhancements, which, among other minor improvements, does the job perfectly.…
-
0
votes1
answer20
viewsQ: Autocomplete with > after inserting signal - on object
I used Netbeans 8.0 and, coding in PHP, after placing the object variable and minus sign (-), the editor automatically included the > sign for me. $myClass = new MyClass(); $myClass- // neste…
-
0
votes1
answer39
viewsQ: Angularjs and C# - model does not bring value if not changed
I have a form where some fields are numeric (decimal format with 2 houses). I’m displaying formatted and masked, all correct. What happens is that when I edit one of the values, this edited value is…
-
1
votes0
answers81
viewsQ: SSL on shared server
I have a shared server with several sites (all mine), where one of them has SSL certificate. However, when we type https://outrosite.com.br (com ou sem www) it displays the site you are on: (without…
-
1
votes0
answers178
viewsQ: How to remove SMS after it has been sent?
I’m trying to send the SMS through Smsmanager and then delete it from the items sent. I am running the following code: SmsManager sms = SmsManager.getDefault();…