Posts by William de Castro • 181 points
8 posts
-
4
votes3
answers627
viewsQ: How to collect the height of an element with jQuery
Oops, I’m not getting the height of an object in the document. I have a slider, which works with ul > li (may be relevant), and inside a slide <li>, I am placing via javascript and c# three…
-
2
votes1
answer593
viewsQ: How to use LEAD and LAG using a condition
My question is, if I can use LAG and LEAD, using a condition in the query, for example: I have the spine cep.. I want to take the value of the next row, and the value of the previous row of that…
-
1
votes2
answers403
viewsA: Pass list of objects between files
Thanks for the collaboration Sergio, helped a lot to the unfolding of the issue, but I had to make some adaptations, because the list of objects is a little more complex than a string, for example..…
-
3
votes2
answers403
viewsQ: Pass list of objects between files
How to pass a list of objects through two Javascript files? I have a list: var elementsList = []; And this list is populated with N objects: var oElement = { elem: "", emin: 0.0000, emax: 0.0000 } I…
-
4
votes1
answer1406
viewsQ: C# Receiving Serialized Objects on a Webmethod
Good afternoon, I am passing a list of JS objects to C#, to a Webmethod, as function parameter, what kind of parameters this should be? I created a class to receive the data: public class…
-
0
votes2
answers491
viewsA: Query Select Option PHP
//define a variável mes $qmes = ""; //se estiver preenchida adiciona valor if (isset($_POST['mes'])) { $qmes = " AND col_mes = '".$_POST['mes']."'"; } if (isset($_POST['estado'])) {…
-
-1
votes1
answer109
viewsA: How to put my template style in extra module?
In the extra module, set the class-Sufix with some css property that is defined in your template.
joomlaanswered William de Castro 181 -
4
votes3
answers28540
viewsQ: Create an array with objects in Javascript
I have defined the object, and the array in the scope. //Define o array que deve ser preenchido com os objetos var itensList = []; //Define os argumentos do objeto var oItem = { Codig: 0, Desc: "",…