Posts by Cristiano Ávila Salomão • 353 points
14 posts
-
0
votes2
answers198
viewsA: Problem with AJAX Jquery
I wanted to first thank my colleague @Gabrielkatakura who gave me the idea of what could be, the problem is occurring because the click event was still active. As I am loading through Ajax HTML code…
-
0
votes2
answers198
viewsQ: Problem with AJAX Jquery
Code in index.php <!DOCTYPE html> <html lang="pt-br"> <head> <title></title> <script type="text/javascript" src="jquery-2.2.3.min.js"></script>…
-
1
votes2
answers130
viewsQ: Removing part of the link on ASP.NET MVC routes
My Routeconfig is configured this way: routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapRoute( name: "Default", url: "{empresa}/{controller}/{action}/{id}", defaults: new { empresa = "",…
-
0
votes1
answer825
viewsQ: Mirror Bank Firebird
Guys I’m looking for a solution to perform database mirroring Firebird, I’ve heard of a tool called shadow for linux, but I’m looking for a tool that works with windows server.
-
1
votes1
answer405
viewsQ: Request jQuery Post + PHP + Mysql does not save data
I am making a registration via jQuery Ajax, so I created the following function: function salvarCadastro(titulo, form, caminho) { var dadosFormulario = $("#" + form).serialize(); var myData = $("#"…
-
2
votes1
answer89
viewsQ: Remove part of the time interval Kendo Timepicker
When using TimePicker of KendoUI to define a selection of service hours, the minimum period (8:00) and maximum period (18:00) was defined, but it will be necessary to remove the interval from 12:00…
-
6
votes3
answers7352
viewsA: Query Status Nfe C#
As some researches found this link: http://balaiotecnologico.blogspot.com.br/2011/03/problemas-comuns-ao-consumir-web.html Basically in my file app.config was described as follows: <binding…
-
2
votes3
answers7352
viewsQ: Query Status Nfe C#
I am trying to perform the service status query for Nfe 3.10 but always is returning the following message: The HTTP request is prohibited with the authentication scheme client 'Anonymous'. I’m…
-
2
votes1
answer59
viewsA: Query with LINQ, trying to perform a RIGHT JOIN
I resolved the matter as follows: from vei in dc.Veiculo join mod in dc.ModeloVeiculo on vei.IdModeloVeiculo equals mod.IdModeloVeiculo join tiv in dc.TipoVeiculo on mod.IdTipoVeiculo equals…
-
1
votes1
answer59
viewsQ: Query with LINQ, trying to perform a RIGHT JOIN
I need to make the following query through LINQ, using the informed tables: Must return all vehicles where the "Type" has the field "PART" equal to "true", the link of the table "Vehicle" with the…
-
2
votes2
answers101
viewsA: Query of N records by Item
I did a process of decreasing ordering by date then applied the following command: ROW_NUMBER() OVER (PARTITION BY PLACA ORDER BY DATA DESC) AS ROWNUM I set up a subquery and asked to return only…
-
3
votes2
answers101
viewsQ: Query of N records by Item
I have a history table on DB2 and would like to carry out a PLACA however despite this I would have to return the last 5 records of each PLACA. Ex.: |ID |PLACA | DATA | VALOR | |12 |ABC | 2014-08-28…
-
1
votes1
answer666
viewsQ: Javascript error with Webbrowser
I am creating an application with Webbrowser component in C# but when running the following code it returns me Javascript error and does not run my other application that was developed in Adobe…
-
1
votes1
answer165
viewsQ: Check if the option to clear the cache is active when closing the browser
I have an application in Adobe FLEX and as some client have very bad computers the automatic cache cleaning is hindering the performance of the application, I wonder if there is any way to verify…