Posts by concas • 719 points
30 posts
-
-3
votes1
answer1463
viewsQ: How to create Trigger postgre
In relation to the table above, 1) Create a Rigger that for each record inserted in tb_move, the account balance is updated in tb_balance. Remembering that if the launch is of the type C' increases…
-
1
votes1
answer37
viewsQ: Problems with insertion into an array
vm.categorias = function () { ConectaVagas('get', 'categorias').then(function (val) { vm.categorias = val; for (var a = 0; a < vm.categorias.length; a++) { console.log(a); // Aqui retorna 0,1,2,3…
-
0
votes1
answer89
viewsQ: Questions with database
What is Staging Area for? Can I search Data from other systems (different databases)? What is a Data Mart? It is linked to the organization’s business sectors or processes?
-
5
votes1
answer180
viewsQ: When to use console.clear?
I was going through my website and installed a plugin, unfortunately it did not load according to the page, giving several warnings on the console, for each product a warning, that is, more than 100…
javascriptasked concas 719 -
3
votes2
answers100
viewsQ: Format php number
I have the variable $valor who returns me 10,00 Needed to format this number to 10.00 In place of the comma , stitch . I tried to use the function number_format($valor, 2, '.', '') but it’s making a…
-
2
votes1
answer343
viewsA: Stacking Blocks with Bootstrap
Yes, there is a solution, but to get the desired effect, you will have to use a plugin called masonry. Of one studied, it is very practical. http://masonry.desandro.com/ $('.grid').masonry({ //…
-
0
votes1
answer60
views -
1
votes2
answers553
views -
0
votes1
answer26
viewsQ: Flexslider Buga in Tab or Modal
I’m making a tab with 1 Flexslider ( Slider ) in each tab, but the first works smoothly, already the second TAB the slider Buga, IE, I have to either minimize the browser or open element inspector.…
-
0
votes1
answer49
viewsQ: Problems in Child Nth
I have the code below, it is working perfectly, the only problem is that if I add one more read or a few more it changes its formatting. I wish it was the same now, but no matter how many Lis there…
-
4
votes1
answer264
viewsQ: Create select with multiple fields
How to create a select that lists at least 03 tables and presents a field from each table at least ?
-
1
votes1
answer438
viewsQ: How to create a select in Firebird?
Create a select listing 03 fields from any table by sorting the data through the 2nd field. I’m pretty weak in Irebird someone can tell me how to do it?
-
1
votes1
answer204
viewsA: Material Design Layout Adjustment
Good morning! You can just put a height, just like: height: 100vh; That is, it takes 100 parts of your screen for the div you apply Remembering that if you want the slider and the menu to take the…
-
4
votes3
answers5814
viewsA: Datetime Picker in Portuguese
You can choose what you want to insert information, for example. DAYNAMES = Name of days. You put into an array the names and it will appear in your calendar! The following code demonstrates some…
-
0
votes2
answers55
viewsA: lighbox codeigniter
This problem occurs for several reasons, often because css is not calling correctly or because javascript is not picking up. Also check if you are calling the . lightbox function(). Look in the…
codeigniteranswered concas 719 -
2
votes1
answer70
viewsA: How to make a body have a scroll
With css, like this? 100 vh picks up and the height of 100 parts of the screen, if you pass this will put a scroll on the screen. body{ overflow:auto; height: 100vh; }…
-
3
votes2
answers916
viewsQ: Sum of table fields with PHP and Codeigniter
I need to add some fields from a table. I have the transaction id and need to add all fields amount with id 224, all with 222.…
-
4
votes2
answers45970
viewsA: Limit text display by number of CSS characters
Use the text-overflow property #div1 { white-space: nowrap; width: 12em; overflow: hidden; text-overflow: clip; border: 1px solid #000000; } #div2 { white-space: nowrap; width: 12em; overflow:…
-
0
votes1
answer109
viewsA: problem with window.onresize()
function verificar_tamanho(){ var tamanho_largura = $(window).width(); if (tamanho_largura > 1008) { executa o codigo; }else{ executa codigo; } } $(window).resize(function () {…
-
2
votes3
answers4254
views -
2
votes4
answers8751
viewsA: Change color marker li
You can use the following code in the LI css. In color you change the color of the before, ie the color of the ball. li { list-style-type: none; position:relative; margin-bottom:0.5em; } li:before {…
-
0
votes2
answers866
viewsA: Scroll bug when opening a modal on top of another
Try using the nicescroll http://areaaperta.com/nicescroll/ I’m not sure I understand your question, but you can add the overflow by js. $(document).ready( function() {…
-
4
votes4
answers27834
viewsA: Remove edge of button
Dude, you can use phocus. .jumbotron .btn:focus{ outline: thin dotted; outline: 0px auto -webkit-focus-ring-color; outline-offset: 0px; } .jumbotron:focus { outline: thin dotted; outline: 0px auto…
-
1
votes2
answers1143
views -
1
votes1
answer492
views -
1
votes2
answers1914
viewsQ: Enable and disable function in jquery
I need to disable a function in jquery, for example, when I click on a div, a function that I set will no longer run, just when I click on another div it will work again. The function is loaded when…
-
0
votes1
answer488
viewsA: How to display a navbar from a particular section of the page?
Maybe you can apply a margin of 100vh ( 100vh = All screen ). Vh divides your screen into 100 parts, if you put margin-top: 100vh, it will catch the entire screen, regardless of resolution.
-
0
votes4
answers249
viewsA: Box of different height fit equal Pinterest
Every 2 li’s you place opens a div and sets the clearfix class. She’s gonna leave you both on the same line. Any other problem, you put min-height and it will work. For example, a min-height in the…
-
0
votes4
answers249
viewsA: Box of different height fit equal Pinterest
Hello, you can create a script for this or use display table. You can also put one clearfix every 2, and they got the same line. With jquery, you can do the following: <html> <body>…
-
4
votes1
answer568
viewsQ: How to schedule an event on datepicker?
I have this code in javascript: $(function() { $("#calendario").datepicker({ changeMonth: true, todayHighlight: true, changeYear: true, showOtherMonths: true, selectOtherMonths: true, dateFormat:…