Posts by Everson Bigaton • 11 points
8 posts
-
0
votes0
answers194
viewsQ: Grab the contents Ckeditor input file
I’m having trouble getting the contents of a file input using Ckeditor. I’ve tested it using the getlementById and everything else, but as the file upload pop-up is created after the page DOM does…
-
0
votes1
answer210
viewsA: Jquery and Metismenu and Modal conflict
Solved by updating the version. link: https://github.com/onokumus/metisMenu and keeping bootstrap before jquery: <script…
-
0
votes1
answer210
viewsQ: Jquery and Metismenu and Modal conflict
I’m having conflict with Jquery and Metismenu and Modal(bootstrap): if I ref. so the modal works, but the dropdown menu does not work: <script…
-
0
votes1
answer310
viewsA: Saving Base64 Image with ADODB.Stream and Classic ASP
Problem solved. Instead of sending the Base64 string by HTML POST ( where I loaded the string in a hidden field), send by AJAX POST. document.querySelector('#btnCrop').addEventListener('click',…
-
1
votes1
answer456
viewsA: Image editor BASE64 + Ajax
Problem solved. Instead of sending the Base64 string by HTML POST ( where I loaded the string in a hidden field), send by AJAX POST. document.querySelector('#btnCrop').addEventListener('click',…
-
0
votes1
answer456
viewsQ: Image editor BASE64 + Ajax
I am implementing an image editor with the hack and upload tool via Ajax. Image editor: http://codepen.io/bigaton/pen/NRBKaa Upload via Ajax: https://github.com/rafaelcouto/Post1334 Image conversion…
-
0
votes3
answers335
viewsA: How to make Mappath Asp Classic
You can use mappath by assigning its value to a variable, or even within the object. The shape of the bars depends, I’ve had to change them to work with the components. Ex: I can use directly with…
aspanswered Everson Bigaton 11 -
0
votes1
answer310
viewsQ: Saving Base64 Image with ADODB.Stream and Classic ASP
I’m using Classic ASP and Javascript to upload and crop the images to the site. I use a script that converts the images to Base64 sends by post and is processed on the server. I followed step by…