Posts by Tiago Crizanto • 1,192 points
19 posts
-
0
votes1
answer390
viewsA: How to overpower the father div by getting behind the daughter div
I was able to solve the problem just add the property pointer-events: none; in the div that highlights the weekends. By adding this property I can select the text and property alt also works.…
-
0
votes1
answer390
viewsQ: How to overpower the father div by getting behind the daughter div
I’m using the jQuery.Gantt in a project and need to do several customizations. One of the customizations is to hover the mouse over an element (in blue) display a tooltip. The problem is that there…
-
-1
votes1
answer122
viewsA: How to define a color using the <Color/> element of Xamarin Forms within a Resourcedictionary
Resourcedictionary is for you to create shared resources like you said, but in this case you are trying to inform an xml file to specify colors. The correct use would be as below. Put the code below…
-
1
votes1
answer79
viewsA: Alternative to Unit of Work + Repository for Dbcontext sharing
Architecture is a complicated and controversial theme. There is no "silver bullet" that solves everything. Many people are against using a repository when using a ORM because it offers many…
-
0
votes1
answer67
viewsA: Asp.Net configure routes of multiple mvc projects
Routes you use when working with MVC Areas, i.e., {url}/{area}/{controller}/{view}. In this case you have more than one MVC project and each project can be an application or a sub-application on…
-
2
votes0
answers82
viewsQ: Does Xamarin Forms dependency service not work with Generics?
I need to generate an instance of a generic class with Xamarim Forms using dependcy service (or a DI framework). With the code below I can generate an instance without problems: Interface namespace…
-
0
votes0
answers53
viewsQ: Application Service connect to Azure’s external Mysql database
I’m trying to connect wordpress that is running on an App Service on Azure. In the main domain I have an ASP NET MVC application and configured an application to run wordpress in the same domain.…
-
0
votes1
answer137
viewsA: How to put the content of an Ajax Post (reply received after post) in a popup? (post sent through an extension)
Dude has several ways to do this. Just you get the callback of the request. See below for an example using Asp Net MVC: Code you will put in your view with the ajax request. $.ajax({ type: "GET",…
-
28
votes2
answers13710
viewsQ: What codes does the Central Bank currency listing webservice accept?
I had to develop a routine that would take the sale price of the dollar and insert it into a table in the bank. The central bank provides a webservice where it is possible to make the queries. For…
web-serviceasked Tiago Crizanto 1,192 -
33
votes2
answers13710
viewsA: What codes does the Central Bank currency listing webservice accept?
After a lot of research I got the code of all quotations and decided to share here. Before arriving at the use of the code, follow the address of the BC webservice and the description of each method…
web-serviceanswered Tiago Crizanto 1,192 -
1
votes1
answer141
viewsQ: Branchs and merge structure . NET MVC
I have the following branchwork structure for ASP NET MVC projects Master - production version DEV - Development Release - Bug maintenance This structure was already defined when I arrived at the…
-
16
votes2
answers10265
viewsQ: Use of DTO and Viewmodel in ASP.Net MVC project
I have an ASP NET MVC 4 project with the following projects: Domain Repository Contracts (interfaces) DTO’s And the web project The web project "sees" only the repository project and it is…
-
4
votes2
answers1637
viewsQ: Query SQL with 2 subselects for query lambda (or Linq)
select fieldA from TableA where fieldA = 459249 and fieldB in ( select FieldC from TableB where FieldD in ( select cte.FieldE from TableC cte where key= 'ABDC123' ) ) I managed to get to the point…
-
1
votes1
answer49
viewsA: How to use macros in VS2008?
In the links below you can find tutorials to record macros in Visual Studio: How to: Record Macros Creating and Using a Macro Create a Shortcut Key for a Macro…
-
3
votes1
answer399
viewsQ: ASP NET MVC project architecture
What would be the best way to store user files according to the requirements below: The user can send one or several files at once; The type of files accepted by the entire application are: mp3,…
-
1
votes4
answers16962
viewsA: What do you call a "Stored Procedure"?
Supplementing the above information. To run a stored trial you can do according to the code below: using (var conn = new SqlConnection(connectionString)) { try { SqlCommand command = new…
-
7
votes1
answer233
viewsQ: Track navigation with Analytics from single pages that have Javascript navigation
I recently created a personal page and would like to track the most visited areas of the site. The problem is that the page is composed of a single file (ex: index.html) and the navigation is all…
-
5
votes3
answers35092
viewsA: Ajax cross-Omain request with pure Javascript (no Apis)
Man... I had this problem a while back. The options I found were: 1 Setting iis to allow cross-Omain requests; (In my case I didn’t have this option, so I didn’t test) 2 Do the ajax request normally…
-
4
votes2
answers2415
viewsA: Stored Procedure in Entity Framework without edmx template
Complementing the above information: To run a stored Procedure vc can do as per the code below: using (var conn = new SqlConnection(connectionString)) { try { SqlCommand command = new…