Posts by Heitor H. Sichin • 45 points
7 posts
-
1
votes1
answer122
viewsQ: Good Practices for Moving JSON Object
I have a grid (Kendo ui MVC) today has 35163 lines, and I need to create a button to export the contents of the grid to CSV. I thought I would do something like this, the moment I load the…
-
0
votes1
answer53
viewsA: Persist the same record by different user
Atomicity - Transactions of a transaction will only be persisted (COMMIT) if they are all successfully executed. In case of failure, all transaction operations will be canceled (ROLLBACK).…
-
1
votes1
answer53
viewsQ: Persist the same record by different user
I’ve seen that there’s a way, but I can’t remember how you do it and not a keyword for me to search. Suppose that distinct users edit the same record, when the last user will persist the information…
-
0
votes1
answer344
viewsA: Same partial view within multiple modal popup
I decided to change the id s of the HTML elements. Thus: $("#grid"). attr('id', 'grid-01');
-
0
votes1
answer344
viewsQ: Same partial view within multiple modal popup
I have a content that is inside a partial view. There are situations where I need to open popup’s that change only buttons and their actions. But the content is always the same as the partial view.…
-
0
votes1
answer277
viewsQ: Frameworks for use of Masks in ASP.NET MVC
In the case of masked fields (for example, CNPJ) and/or date, which framework UI free would be more recommended? Javascript or; jQuery or; Kendo or; Angularjs or; I don’t know what else. I do not…
-
2
votes1
answer808
viewsQ: ASP.NET MVC and DDD
I am trying to use DDD and Fluent Api in a test application. I have the following question: I have a product register (in this case ink), when including a new product I put dropdownlist s, to force…