Posts by Jhonatan • 179 points
8 posts
-
1
votes0
answers158
viewsQ: Ionic 3 - Disable specific view keyboard
I’m using the app on a physical keyboard data collector. Client asked to disable native Android virtual keyboard on some screens only. I installed the Keyboard of Ionic-Native, another of Cordova…
-
2
votes1
answer256
viewsQ: Get Organization/Departament and Organization/Title with Userprincipal - AD and C#
I am using the reference System.DirectoryServices.Accountmanagement and I have the code below: string dnsAD = "USINA.REDE"; string groupName = "Grupo Controle Acesso Gestao de Ativos"; //seta o…
-
-2
votes2
answers3773
viewsQ: Group and add array in Javascript
How to do a function to sum only values that are of the same date? I passing an array of arrays: [{ servicos: 0, remessa: 503, materiais: 0 , retorno: 598, entrada: 0, date: new Date("2011/12/20")…
-
3
votes3
answers44020
views -
2
votes2
answers217
viewsQ: Form in view with subforms in partialView
Dear friends, I have a view containing only @model Projeto.Models.Oc and a form. Within this form, I have buttons that call MODAL, those MODAL possess partialView who owns another form and @model…
-
1
votes1
answer671
viewsQ: Kendo UI Grid Export Excel
I have the following Grid in *.cshtml: $.ajax({ url: '@Url.Action("RetornaJsonGrid", "PacoteLicencas")', type: "post", cache: false }).success(function (json) { $("#gridPacoteLicencas").kendoGrid({…
-
5
votes3
answers1456
viewsQ: Encapsulate values returned by JSON within a single object
I have a question, I have this code below on controller: [Authorize] public JsonResult Teste() { var licencas = new List<Object>(); licencas.Add(new { Responsavel = "José", Ticket = 79007,…
-
2
votes2
answers1555
viewsQ: Calling action with AJAX, but does not return Alert to view
In the textbox Ticket, at the event onChange() I call AJAX below: $('#Ticket').on('change', function () { var tkt = this.value; $.ajax({ url: '@Url.Action("VerificaTicket", "Oc")', data: { 'tkt':…