Posts by José Dam • 109 points
19 posts
-
-3
votes6
answers21826
viewsA: How to remove auto-fill inputs?
It worked for me: autocomplete="none" Using in the Ionic5
-
2
votes1
answer94
viewsA: How to take value of element attribute with Angular IONIC4
I got it like this: <ion-input #myInput data-set="01"></ion-input> @ViewChild ('myInput', { read: ElementRef }) myInput: ElementRef; ngAfterContentInit() {…
-
0
votes1
answer94
viewsQ: How to take value of element attribute with Angular IONIC4
How can I take the value of the data set attribute or change it in the link with the following structure: <a href='#' data-set='22'>Texto</a> I know that in jquery I can use:…
-
0
votes0
answers58
viewsQ: Prevent Navbar Scroll in Materializecss
I’m using Materializecss in a project, so far so good. I’m not able to make a stop with the scroll bar. How do I stop the scroll bar from going up, in, over the navbar? so that it only scrolls the…
-
0
votes1
answer55
views -
0
votes1
answer55
views -
2
votes1
answer95
viewsQ: How to remove keywords between { } keys in the Mysql field?
I have a table that contains a field with some values between keys, how do I delete the chaves and the valores that are within them? Example: cod | Movimento | 01 | Prazos {aguardando} | Prazos…
-
0
votes1
answer53
viewsA: Problem with library switchery
simply remove the checked property from the checkbox.
-
0
votes1
answer340
viewsQ: Switchery with tooltips (bootstrap), how to do?
How to make Switchery show bootstrap tooltip on itself? This example does not work: <input data-toggle="tooltip" title="Hooray!" type="checkbox" class="js-switch" /> var clickButton =…
-
0
votes1
answer122
viewsA: Javascript function does not resume $_POST from PHP
I could not find in your jquery code the string with the URL pointing to the file uploads.php. this is necessary if not by default it sends to same form page. Make this change to see the result.…
-
0
votes2
answers433
viewsA: Large data volume datatables
Have a look here: https://datatables.net/examples/data_sources/ajax.html And here: https://datatables.net/reference/option/ajax…
-
-1
votes1
answer64
views -
0
votes1
answer216
viewsA: How to send emails with Phpmailer on localhost without module ssl
I finally managed to send an email with the phpmailer class, on localhost, without the need to install ssl on the machine. This tip was tested now in January 2017. To be able to send email with…
-
-2
votes1
answer216
viewsQ: How to send emails with Phpmailer on localhost without module ssl
Hello folks would like to know if there is a possibility to send email localhost using the Phpmailer library without having to install the SSL module in apache and PHP? I have tried several…
-
1
votes3
answers7203
viewsA: Pass Javascript parameter to PHP
You can add as many variables as you like. Exp: data: { parametro: "valor", prametro2: "valor", parametro3: "valor"} Or go from PHP like this: var valor1= '<?php echo "valor"; ?>' var valor2 =…
-
-3
votes1
answer429
viewsQ: Update with Multidimensional Array
I’m having a terrible problem, I can’t update mysql via PDO, with array that comes from some form fields. I’ve tried a lot and so far I can’t update. The array comes in this format. Array ( [id]…
-
1
votes1
answer135
viewsQ: Problem with Ckeditor in Modal Bootstrap
I’m having trouble visualizing the windows that are opened by the Ckeditor, called from a Bootstrap modal. They, the windows, open. But just behind the modal. Can anyone help??
-
1
votes1
answer135
viewsA: Problem with Ckeditor in Modal Bootstrap
I found the solution in the jQuery forums. Follow the solution and the source link: Open the Ckeditor 'config.js' file it will look like this: CKEDITOR.editorConfig = function( config ) { } Then…
-
2
votes1
answer2569
viewsQ: How to limit the amount of 'checkbox' selected?
I have a form with 5 (five) checkbox. I wish the user could just dial 3 (three) of those 5 (five). How do I do this validation using jQuery or Bootstrap? Thanks to all for their cooperation.…