Posts by Derlei Lisboa • 160 points
8 posts
-
2
votes2
answers1674
viewsA: Android keyboard does not override buttons
In the Manifest add the following configuration of Activity: android:windowSoftInputMode="adjustPan" The android:windowSoftInputMode is responsible for the form of interaction of the main window of…
-
1
votes3
answers679
viewsA: How to redirect the 'interface' to a home page after a downtime?
Instead of: window.location.reload = "initial_page.html"; Utilize: window.location.replace("initial_page.html"); Or: window.location.href = "initial_page.html";…
-
4
votes4
answers788
viewsA: Using HTML5 default value
Missed "=" after value. Try it like this: <input type="text" name="anterior" id="anterior" size="13" maxlength="50" disabled="disabled" value="123456,78" />…
-
1
votes1
answer2871
viewsA: Get values from within stdClass array stdClass
By your example we have the following structure: The object $data where it has an attribute called return which is an object array. To access the attribute return we use $data->return. By the…
-
1
votes2
answers3218
viewsA: Clear Modal Bootstrap
You can use the event hidden.bs.modal of the modal to clean the data when it is hidden, as follows: $('#myModal').on('hidden.bs.modal', function (e) { // Seu código aqui.. })…
-
4
votes2
answers1320
viewsA: How to hide a password in C#
The fields TextBox have a property called UseSystemPasswordChar, change it to true.…
-
0
votes1
answer210
viewsA: How to make the cycle in Lisp?
This link contains a large amount of information about this language. Including an explanation of interactions, in section 2.19 you can see how to create a loop which would be equivalent to for…
lispanswered Derlei Lisboa 160 -
0
votes1
answer1356
viewsA: How to load an Excel table and turn it into an HTML table using Javascript?
There is a jQuery plugin that makes it possible to convert . csv files to JSON. This way you can extract the data from the file and work with them on screen as well as wish. Follow the official site…