Posts by Mateus Alberghini • 38 points
8 posts
-
0
votes1
answer1058
viewsA: How to increase the width of table columns and adjust the width of the Javascript modal window
To increase the size of the Bootstrap modal, you can normally use css, for example: In the code below, look at the class I entered in the second DIV <div class="modal fade" tabindex="-1">…
-
0
votes1
answer33
viewsQ: Problem with angular js inject
It’s been a while since I’ve been learning Angular and having some problems. I try to include a service (httpService), but an error occurs. My code: Controller.js: 'use strict'; var app =…
-
0
votes1
answer225
viewsQ: Manipulating td’s of tables
I have a code that breaks down the information coming from the database into three tables. But when I filter these results by name and code (fields available in the DOM to filter the tables) the…
-
0
votes0
answers17
viewsQ: Doubt Angularjs
I wonder why in angular js has this kind of statement: (example) ab.setType = setType; ab.getType = getType; ab.getTitle = getTitle; ab.calculateTimeOfWork = calculateTime;…
-
0
votes2
answers59
viewsA: Doubts how to create a layout for editing information
About layout you can use tables with Labels and inputs normally, ex: <table border="1"> <tr> <td> <label>Horário de entrada</label> </td> <td> <input…
-
-1
votes2
answers93
viewsA: How to prevent deletion of an html snippet?
This should work for you $(document).keydown(function(e) { var elid = $(document.activeElement).hasClass('textInput'); if (e.keyCode === 8 && !elid) { return false; }; }); o e.keycode is the…
jqueryanswered Mateus Alberghini 38 -
2
votes2
answers287
viewsQ: Filter a list of spans with jquery
I needed it a little urgent, can you help? I need to filter a list of spans : <div class="list-group pre-scrollable lista"> <?php for($i = 0; $i < count($ambientes); $i++) { ?>…
-
0
votes1
answer414
viewsQ: Chart numbers from Google Charts
I want to turn the percentage graph data into real numbers, how do I do it? I tried to read the documentation but could not find. Code: <html> <head> <script type="text/javascript"…