Posts by Anderson Apdo de Souza • 151 points
16 posts
-
0
votes0
answers71
viewsQ: DOM slow to respond
Next, I have an application that within the . NET charging is fast, it takes 1,423s for the method to respond, only when it goes to the VIEW it is taking longer... It’s like something is holding the…
-
1
votes1
answer156
viewsQ: Error while using Parallel.Foreach
I am making some improvements in a method, which today takes on average 19 to 22s to bring the information to VIEW and saw the possibility of replacing the foreach for Parallel.Foreach. I changed…
-
0
votes1
answer49
viewsQ: Edit a contract template with jquery
I wonder if it is possible to add a contract within a textarea and define some fields that can be changed in this contract. For example: I have {{name}} {address}} I want to allow the user to drag…
-
0
votes1
answer192
viewsQ: Reporting Modeling in ASP NET MVC
I have several reports in the company, and I need to migrate them from webforms to MVC. My question is.. Do I need to create a template for each report? Is that correct? If not, how can I do? For…
-
0
votes2
answers345
viewsQ: Error when using replace
I’m using replace, but when I pass the number 1 or 12 to it from the error. For example : $(this).data('qtde').replace(/\./g, "") Passing the value 1.223.44 works, when step 1 of the following…
-
1
votes2
answers1000
viewsQ: How to get a list of values common to two lists with LINQ?
I have two List, the first, which is a list containing all the establishments available in the company, for example: Estabelecimento Sigla - XPTO Descricao - XPTO List Estabelecimento Sigla - RPTO…
-
0
votes0
answers68
viewsQ: Load function after loading all screen functions
How do I execute a function after executing all screen functions? I have a screen that needs to be completely filled in for me to invoke a field fill function. The function : $(document).ready({…
-
0
votes0
answers236
viewsQ: Ignore files from the Debug obj folder
I’m having a problem, every time I check in the visual studio relates these files : I created a file (.tfignore) to try to ignore them but it didn’t work : \packages \obj \bin \_design\.sass-cache…
-
1
votes1
answer163
viewsQ: Refresh in data attr to show in bootstrap Popover
I have a table who owns a td with the following code : .append($("<td class='popOverStatusAlmo' data-container='body' data-toggle='popover' data-placement='top' data-content='" +…
-
1
votes2
answers4211
viewsQ: Passing parameter through URL
how do you pass a parameter to another VIEW screen, without the user seeing it in the URL? For example : I have a query screen that the user clicks on the table and is redirected to another screen,…
-
1
votes1
answer58
viewsQ: List is being filled in but the properties are null
Hello, I am using the following method in C# : public ActionResult Gravar(int pCodigo, string pDestino, int pRespDestino, int pOs, int pProjeto, string pEstabelecimento, string pObs, int pPim,…
-
1
votes2
answers44
viewsQ: Problems validating balance
Hello, my personal beauty? I have a problem in my code, I am doing a validation to check if the amount entered by the user is greater than the balance, if it is I send an error to the user. The code…
-
2
votes1
answer87
viewsQ: Returning two objects from the Repository
My application is divided as follows: Repository --> Access Progress database Controller --> Receives Repository return and sends to View View --> Receives Controller Return. Next, my…
c#asked Anderson Apdo de Souza 151 -
1
votes1
answer467
viewsQ: Protect against HTML changes without blocking the browser console
Good morning, how do I prevent the user from entering the html element and modifying it? May example: Return a value to screen and feed it within an input called itemSweet, then the user can use the…
-
0
votes1
answer30
viewsQ: Tip on how to write my code better
all right? I would like the experience of you to give me some tips on how to improve the writing of my code. Follows: $(function() { preencheInformacoesDaTela(); }); function…
jqueryasked Anderson Apdo de Souza 151 -
3
votes1
answer514
viewsQ: Using php Artisan make:Repository
Hi, I’d like to ask you a question. I’m using the remote: php artisan make:repository ProjectNote And I would like to know how do I make the command understand that I want my migrate to have the…