Posts by MANIAMAX • 653 points
29 posts
-
-1
votes1
answer26
viewsQ: Problem with scroll horizontal ckeditor
I have Ckeditor 4 in my cms and when I put a large text not to scroll, I’ve already been looking for a solution and I can’t find, however analyzing the code I find that in the html of iframe there…
-
1
votes1
answer54
viewsQ: GROUP_CONCAT (CONCAT... in Laravel?
I don’t know if anyone can help me I needed to execute this SQL in Laravel I just don’t know how to use the GROUP_CONCAT with the CONCAT within? select dictionaries.name,…
-
-1
votes1
answer33
viewsQ: Catch the children directly from ul
I need to analyze the direct children of a ul give what I’m doing clone() I’m just not getting any results. HTML <ul id="menu"> <li>Menu 1 </li> <li> Menu 2 <ul>…
-
0
votes1
answer36
viewsQ: Difference between echo with Brackets and without Brackets
Can you tell me the difference between echo and Brackets? <?php echo "OI {$nome}"?> and without Brackets <?php echo "OI ".$nome;?>…
-
0
votes1
answer18
viewsQ: Jquery function . date
Can anyone enlighten me or explain to me the difference between these two situations $.data(this, 'timer') Or $(this).data('timer');
-
2
votes2
answers244
viewsQ: Check is Curl image
Is there any way through the Curl request to know if it’s an image or not? $ch = curl_init($image_url); $name = generateRandomString(); $fp = fopen($caminho.'/'.$name.'.png', 'wb'); curl_setopt($ch,…
-
4
votes1
answer599
viewsQ: Log in to Angular2
I’m starting to learn angular2 and I have a few questions about how to log in to an application. For example I in php make a query with the variables I receive by post I check if they exist, if they…
-
0
votes1
answer54
viewsQ: Apigility Doubt in the Methods
I am using the Apigility to create Web Services Rest only I have a doubt , I can add methods in class Resource , if yes how can I make a call the method through php. Thank you…
-
-1
votes2
answers591
viewsQ: Change background to an element via jquery
I would like to do something like this represented in the image below or wanted to change the background of the <a href> when it is clicked on another <a href> below. This doesn’t happen…
-
4
votes1
answer205
viewsQ: Click a button through Class
I have the following button: <button class="btn btn-danger btn-lg btn-block betButton">Submit</button> And I’d like to make one click in it through a javascript event, only that is…
javascriptasked MANIAMAX 653 -
0
votes1
answer774
viewsQ: Replacing accents and cedillas
I’m having a problem in javascript do a window.open() with a string the problem is that if the string has accents or cedilhas gives error , someone knows a way to replace the accents or cedilhas by…
-
0
votes1
answer153
viewsQ: Entry page of this genus
Does anyone know where I can enter an entry page with this shape or something similar?…
-
0
votes1
answer14
viewsA: Datatables eliminate Ordering in a column
Solution to the problem : aoColumnDefs: [ { bSortable: false, aTargets: [ -1 ] } ]
jquery-pluginsanswered MANIAMAX 653 -
0
votes1
answer14
viewsQ: Datatables eliminate Ordering in a column
Can anyone tell me if it’s possible to eliminate Ordering in a column on Datatables? And that the column in question is to put buttons and it is not very logical to have an Ordering. Thank you…
jquery-pluginsasked MANIAMAX 653 -
1
votes1
answer26
viewsQ: .htaccess detect string after Slash
I’m not getting htaccess to detect string or characters after / for example. I have this: foo.foo/xx/ and I wanted when this happened foo.foo/xx/whatever o . htaccess internally executes a php code…
-
3
votes1
answer158
viewsQ: Dynamically Change Bar Percentage
I have this bar percentage and I wanted to dynamically change the value of it only I’m not getting it. Bar code <script> $('.bar-percentage[data-percentage]').each(function () { var progress =…
-
1
votes3
answers43
viewsQ: Name a csv file
I on a site I develop backup data in csv my problem and that if I want to recover the backup (through the site ) as I have a folder with several csv I can’t know which was the last one that was…
-
1
votes2
answers74
viewsQ: Combobox Css Help
Can someone show me how I can get that arrow with that dashed next to it ?…
-
0
votes1
answer56
viewsQ: Number of records that do not meet a given filter
I have this query: SELECT * FROM Tabela WHERE campo != ""; How to know the amount of records that do not meet this condition? I know I can create another query and use affected Rows I can have the 2…
-
2
votes1
answer64
viewsQ: Mouse Scroll Lock
How to block the scroll Whell mouse in a div using Javascript or jQuery?
-
0
votes1
answer364
viewsQ: Positioning of div
I am trying to make a joke with css and Html5 of this type. Only it’s causing a lot of problems because To div (content)principality is not occupying all the height and width of the page. The…
-
0
votes1
answer4675
viewsQ: "Detached Entity passed to persist" when inserting for the second time
I have a bug when I try to insert a new user for the second time. Error: 12:51:54 PM com.sun.faces.lifecycle.InvokeApplicationPhase execute WARNING: #{testeHibernate.save}:…
-
0
votes2
answers3180
viewsQ: javax.faces.Facesexception, java.lang.Nullpointerexception
The following error(full description below): com.sun.faces.lifecycle.Invokeapplicationphase execute WARNING: #{testHibernate.save}: java.lang.Nullpointerexception javax.faces.Facesexception:…
-
3
votes1
answer486
viewsQ: Unable to create Managed bean
I’m having a problem here in java that I don’t know how to solve or what it might be because I’m learning to program with java for the web and I don’t know the possible causes of the following error…
-
0
votes2
answers603
viewsQ: Convert file to txt
I had the search on the net but found nothing concerning to do upload of any file and convert it to txt and then do a search for the text you have inside and get results. Does anyone know how to do…
-
2
votes2
answers70
viewsQ: Problems with Json
I have a file with requests in JSON format made to a server and my problem is that I know how to take these requests I mean those lines and handle in php Example of how this File…
-
2
votes2
answers123
viewsQ: Error Unexpected token for
I’m having trouble applying one for at the fullcalender for listing events in a calendar. It gives me the following error: Unexpected token for Here is my code: for (i = 0; i< array1.length; i++)…
javascriptasked MANIAMAX 653 -
14
votes1
answer3096
viewsQ: How to place authorship using MIT license
According to the MIT license I have to put the copyright and where? Or I do not need to put? MIT license The MIT License (MIT) Copyright (c) 2014-2015 almasaeed2010 Permission is hereby granted,…
-
3
votes2
answers814
viewsQ: Funcao mail in php
I’m using the function mail php and would like to check if emails were sent successfully, but I don’t know how I can do it. How could I check if the email was successfully sent?