Posts by renanroncarati • 71 points
5 posts
-
0
votes1
answer427
viewsA: How to configure Appium using Selenium Web Driver (C#) - Visual Studio
You can use the following posts to meet your goal. This first shows the Selenium configuration using C#…
-
1
votes1
answer266
viewsA: Correct View Creation on MVC using Ajax
The cool and for the good use of MVC’s Binds is creating even typed views. You could create a presentation model (a class in the model) that includes Budget, Orcamentoitem and Historico. ex:…
-
1
votes4
answers3646
viewsA: Capture selected value in grid checkbox
Despite the accepted answer, it may contain null and when accessing the value of it give a Nullreferenceexception, I would change your implementation to check the billed checkbox value for…
-
1
votes1
answer433
viewsA: Write data from a Datagridview
Opa, to avoid cast errors you have used Datagridviewcheckboxcell well. Now to fetch the checkbox value you can treat it this way: bool bChecked = (null != cell && null != cell.Value…
c#answered renanroncarati 71 -
1
votes1
answer895
viewsA: View passing date to Model in wrong format
Opa, assuming that you will have more models with date, it is worth you create a customizable Modelbinder for your Datetime that maybe will be linked from View to Model. public class…