Posts by richellyitalo • 210 points
7 posts
-
0
votes1
answer132
viewsA: Slick Responsive
The Slick owns a property called responsive, There you determine the amount of images you want to display for each resolution, as there is no standard set on tablets, you can stipulate manually.…
javascriptanswered richellyitalo 210 -
1
votes2
answers506
viewsA: JS - How to get the Element selector or or its tree?
With jQuery you can return the tree like this. $('.evento').on('click', function () { $(this).parentsUntil('div.root'); // ele não retornará o elemento atual clicado // então você pode pegar ele com…
-
3
votes1
answer250
viewsA: How do I upload a file larger than 10MB without having access to php.ini?
ini_set('post_max_size', '64M'); ini_set('upload_max_filesize', '64M');
-
0
votes1
answer37
viewsA: how to make a message field with formatting buttons
From what I understand, you want a WYSIWYG. Well, next: I recommend then the Ckeditor plugin. Before implementing, you can check here my example https://jsfiddle.net/richellyitalo/g65z24wr/2/.…
-
2
votes3
answers111
viewsA: How to disable the "See Details" button in the image preview?
Add the options: {'fileActionSettings':{'showZoom': false} $("#input-id").fileinput({ fileActionSettings: { showZoom: false }, showRemove: true, showUpload: false, showCaption: true, showZoom: true,…
-
0
votes2
answers922
viewsA: Opening image by clicking HTML + PHP + JS
In this case, I recommend using the Magnific Popup. http://dimsemenov.com/plugins/magnific-popup/ Which is an image lightbox, also works well with galleries. Its implementation is simple:…
-
0
votes1
answer41
viewsA: Form via post and pass in beforeSave
Beneath the scenes, Cakephp sets the form request to PUT. So in the instruction Else if ... change the is('post') for is('put').