Posts by R.Park • 51 points
15 posts
-
-1
votes1
answer45
viewsQ: How to prevent a record when edited to save in duplicity?
This snippet of code saves the themes of a record. However, when I edit a record by adding a new client, the last theme of that record duplicates. That is, every time I edit a record it duplicates…
-
1
votes0
answers22
viewsQ: How to change a search field to an icon, mobile and tablet?
I would like to create a menu similar to this below, however, in the resolution devices less than 800px, I am unable to change the search field, for the magnifying glass icon. <html>…
-
0
votes1
answer43
viewsA: How to display the contents of the array by changing the structure ID dynamically?
console.log(data.items); var items = data.items; var html = ""; for (var i = 0; i < items.length; i++) { html += `<div class="card" id="${items[i].id}"> <img class="card-img-top"…
-
-1
votes1
answer43
viewsQ: How to display the contents of the array by changing the structure ID dynamically?
I am trying to display the array products, however, I cannot change the Ids dynamically so that all products are displayed. So far, I can only display 1 product, because the ID is fixed, as shown in…
-
0
votes2
answers330
viewsA: Enable and disable button for dynamic elements in cart
function habilitaButton(numero) { var qtd = document.getElementsByClassName("input-text qty"); var btn =…
-
0
votes2
answers330
viewsQ: Enable and disable button for dynamic elements in cart
I created these functions in case the quantity of the product is changed, regardless of whether it is by the arrow buttons or directly in the field, the "Update" button appears, only for the product…
-
0
votes1
answer185
viewsQ: Controller receiving null parameters
//Controller [HttpPost] public ActionResult EditarConfSist(ConfSistMOD confSist) { try { var repositorio = new ConfSistREP(); repositorio.EditarConfSist(confSist); // gerar o log logar = new…
-
1
votes1
answer1326
viewsQ: How to keep Scroll in last position after page refresh
I made some attempts, but I was unsuccessful... The priority is that it be in pure Javascript... But since I could not, I tried with jQuery also. The situation would be, each time the user increases…
-
0
votes0
answers60
viewsQ: Call PROC MVC to display the list of users who cannot register
Trying to call the PROC sp_UsuariosVariasTentativasCadastro_Result, that brings a list according to the form data. But nothing is happening. Someone can help me ? NOTE: I created all these "layers"…
-
0
votes0
answers85
viewsQ: Does not delete record from list and SQL database
I would like you to delete the desired record not only from the list but from the bank as well, how can I proceed? He’s going with the id "0" Instead of taking the id of the record I wish to delete.…
-
2
votes2
answers511
views -
0
votes1
answer78
views -
0
votes2
answers397
viewsA: How to enable PDF dowload on webView with Android Studio
// Adicionei este fragmento na minha MainAtivity view.setDownloadListener(new DownloadListener() { @Override public void…
-
0
votes2
answers397
viewsQ: How to enable PDF dowload on webView with Android Studio
//MainActivity package app.inova.appfatto; import android.support.v7.app.AppCompatActivity; import…
-
0
votes1
answer149
viewsQ: Asp.net MVC form, no modal call after data validation
I tried to make the modal call through Viewbag, but to no avail. I made a Debugg to see how was the process and in the final step that would appear the modal informing the user that "contains…