Posts by LF Ziron • 2,185 points
65 posts
-
0
votes4
answers176
viewsA: Do not show "overflow" arrows
td { width: 100%; height: 30px; overflow: hidden; } td div { height: 100%; width: 100%; overflow-y: scroll; padding-right: 17px; /* Aumente e diminua esse valor para compatibilidade cross-browser */…
-
1
votes1
answer65
viewsA: Problem with menu formatting
Add first-Child to the Hover elements, so that their properties are not replicated in the submenu items. And to display items vertically, use display:block; in the submenu items #menu {…
-
1
votes2
answers125
viewsA: Is there a workflow in git that determines file access and blocking?
No. The best way to control editing files in a democratic way in git is to use pull requests. See if this material help you by kindness…
-
1
votes3
answers268
viewsA: Stop multiple jquery events
As you are using these events in an input, I believe the code below is the simplest way to solve your problem: $('input[name=buscar]').change( function() { console.log('foi'); });…
-
3
votes1
answer99
viewsA: Creating libraries with multiple runs like Jquery
Just at the end of the method you return the object itself (Return this) : Example: var Numero = function(num){ this.num = num; this.valueOf = function(){ return this.num; } this.maisUm =…
-
-1
votes2
answers604
viewsA: Disable a p:inputText by focusing the cursor on another p:inputText
If you use jquery it is very simple: $("#out1, #out2").focus(function(){ $("#out1, #out2").attr("disabled","disabled"); $(this).removeAttr("disabled"); });
-
2
votes1
answer2192
viewsA: Tool to convert Excel to Json
Body of html: <label> Arquivo do excel: </label><input id="excelfile" /> <div id="output"></div> Head of Html: <script type="text/javascript"…
-
0
votes1
answer321
viewsA: Jquery Validate does not execute the event when fields are autocompleted
When the browser completes the fields automatically, the event that activates the validate is not called. You need to call it manually, try this way: $(document).ready(function(){ checkInput =…
-
1
votes2
answers284
viewsA: How to use jQuery in MVC Architecture?
jQuery was created to manipulate DOM, meaning a priori it acts as part of the view. A good solution for this would be to use Angularjs, Ember or React. If you really need jQuery, use it together…
-
-1
votes1
answer1193
viewsA: Permission Denial: Starting Intent with revoked permission android.permission.CAMERA
I don’t know if that’s the case, but from the Lollipop, changed the way the Android asks for the user’s permission. Try adding this to your Androidmanifest.xml <uses-sdk…
-
1
votes1
answer117
viewsA: Select network card in Virtualbox for packet capture [JPCAP]
In the virtual machine’s network settings, select that it must be connected in bridge mode, so it will have its own ip inside your network.…
-
0
votes2
answers83
viewsA: Screen to enter values
In your html, the inputs must be in a form tag to work. What we need to focus on is the "action" and "method" properties of the form tag, the "name" property of the text input tags (credit and…
-
2
votes1
answer3538
viewsA: Taking xlsx file with HTML and PHP
It is easier for you to do this using the standard CSV files (comma separated). Use the Phpexcel library to convert your xlsx file to csv, and then use the fgetcsv function to transform the csv data…
-
1
votes1
answer301
viewsA: How to stream audio with Ionic?
I recommend using the Binaryjs library. It is very good to use in angular since it supports bi-directional streaming. Use it is extremely simple, see if it satisfies your need: http://binaryjs.com/…
-
5
votes2
answers1000
viewsA: How to create templates with Javascript?
You can use Angularjs itself to modularize the page. You can separate markup, content and logic from each part of your web app individually. You can see the documentation on:…
javascriptanswered LF Ziron 2,185