Posts by Juarez Turrini • 191 points
14 posts
-
0
votes1
answer461
viewsA: MYSQL is terminating alone when running a database
After having opened this question I was immersed some 2 days in the forums of MYSQL in English looking for similar problems and making the famous: "trial and error". I found people who had the same…
-
0
votes2
answers64
viewsA: How to choose the database on login
If you are using a simple connection using php classes for mysql, then use the function below: Function: mysql_select_db(); Link: http://php.net/manual/en/function.mysql-select-db.php However mysql…
-
0
votes1
answer461
viewsQ: MYSQL is terminating alone when running a database
I have a problem with my mysql on localhost. I use xampp as a service and Heidisql to facilitate the programming process. Anyway, when running the file below the MYSQL service is terminating alone…
-
5
votes1
answer10937
viewsA: Use sheet name extracted from a cell
I finally found the solution thanks to a friend who pointed out a link that helped him to solve the same problem of his. I will paste the text of the reference here just adapting my question to…
excelanswered Juarez Turrini 191 -
4
votes1
answer10937
viewsQ: Use sheet name extracted from a cell
I am creating a workbook in excel that will serve as a template for many others that will be generated through it. This template workbook has 5 worksheets, and one of it can be replicated several…
excelasked Juarez Turrini 191 -
1
votes1
answer138
viewsA: Take XHR and set values dynamically with jQuery Datatables?
As requested by our friend Maniero I am answering my question. I couldn’t solve the problem above. I made a Fork of the project on Github, I changed what I needed and forwarded a pull request to the…
answered Juarez Turrini 191 -
0
votes2
answers260
viewsA: Datatables - Rowspan in <tbody>: Cannot read Property 'classname' of Undefined
I know this reply of mine won’t solve your problem (and I did a lot of research on it and the only reference I found the link to it no longer existed, as you can see in this link) But here are some…
-
1
votes1
answer125
viewsA: Nan sInfo _TOTAL_datatable jquery/JSON
Your Json needs to return this structure below for dataTables to assume the correct totals: { "draw": 1, "recordsTotal": 57, "recordsFiltered": 57, "data": [ { [...] If you still don’t solve post a…
-
2
votes1
answer138
viewsQ: Take XHR and set values dynamically with jQuery Datatables?
I’m using the Jquery plugin Datatable and it works, with AJAX, basically as follows: You receive a JSON from your request and it needs to contain these two data: ("recordsTotal", "recordsFiltered")…
asked Juarez Turrini 191 -
1
votes1
answer216
viewsA: IE does not show CSS gradient and font-shadow effect correctly
Try to include the tag in your html. <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Dancing+Script:700"> And see if it works. Here for me it worked without…
-
0
votes3
answers348
viewsA: Login to Paypal
Why don’t you use the API of Paypal? You have her documentation in Portuguese as well. I’m sure this way you’ll get the connection successfully.…
-
1
votes2
answers232
viewsA: Foundation does not work anything using Javascript
Try to place javascript at the bottom of the page before closing the Body tag. Below this you do the Foundation boot: <script>$(document).foundation();</script> If it still doesn’t work,…
-
1
votes1
answer84
viewsA: Problem using MAP in Sass
Talking to a friend over skype he gave me the solution because I had already been through the same problem a little while ago. Just run the command below at your ruby prompt (in windows) or linux…
sassanswered Juarez Turrini 191 -
3
votes1
answer84
viewsQ: Problem using MAP in Sass
As released on the blog of Sass as of version 3.3 is available the creation of map in Sass (basically an object). I have the following version of Sass (duly updated by GEM): $ sass -v Sass 3.3.5…
sassasked Juarez Turrini 191