Posts by Fernando Issler • 91 points
10 posts
-
1
votes1
answer72
viewsA: Send fullcalendar event data to modal window
I ended up finding the solution by setting the data-id attribute: eventClick: function(event) { $('#modal').attr('data-id', event.event.id).modal(); } And taking that information from the other…
-
0
votes1
answer72
viewsQ: Send fullcalendar event data to modal window
I have a fullcalendar with the following events: events: [ { id: 1, title: 'Evento 01', start: '2020-02-06' }, { id: 2, title: 'Evento 02', start: '2020-02-19' }, { id: 3, title: 'Evento 03', start:…
-
2
votes1
answer116
viewsQ: Apply CSS by conditioning when two classes are together
I have two situations: <div class="content"> <span class="title">Título</span> <span class="time">12:00</span> </div> and <div class="content"> <span…
cssasked Fernando Issler 91 -
0
votes2
answers42
viewsQ: Stop counting for Jquery
How can I stop the FOR count in Jquery? For example: That code: for (i = 0; i < 5; i++) { if (i === 3) { continue; } text += "The number is " + i + "<br>"; } Will show the result: The…
-
-1
votes1
answer74
viewsQ: Select elements ignoring specific items SIMPLE HTML DOM
I am parsing a table. But within this table there is another table and it is difficult to find the whole elements. I’ll paste the code to illustrate it better. <table> <tr> <td>…
-
0
votes1
answer54
viewsA: I am trying to copy a text to the Clipboard via javascript and Jquery and in a very specific case it does not work
You are calling the function <body onLoad="primeclick();"> And the function is as follows: function primeclick() { $( "button:last" ).trigger( "click" ); } How will the body know which button…
javascriptanswered Fernando Issler 91 -
2
votes3
answers92
viewsQ: How to better organize the foreach
I have this foreach which is working perfectly, but I think it’s a very polluted, very large code. Is there any way to rewrite this foreach in a more correct way? Everything works perfectly, but I…
phpasked Fernando Issler 91 -
0
votes0
answers140
viewsQ: Manipulating XML from Webservice response in PHP
I’ve seen some of these responses here in other languages, but not in PHP. Does anyone know how I can manipulate this xml that returns from a Webservice? I would like to take the specific data you…
-
1
votes0
answers435
viewsQ: Webservice PHP WSDL XML
Hello, I’m developing a PHP system where I manage my court cases. I would like to receive the process movements automatically, so I saw that there is a Webservice to facilitate this functionality.…
-
1
votes0
answers162
viewsQ: Select2 does not work after cloning the entire Section
After cloning an entire Section, select with Select2 no longer works. I tried to use Destroy to use Select2 in JS but it doesn’t work. Can anyone help me? It would be of great value. Thank you. The…