Posts by Felipe Santos • 53 points
8 posts
-
0
votes1
answer1063
viewsQ: TEF communication
I need to integrate TEF into my system. Does anyone have any idea how I can start this? Is there any open source software to do this integration? I found some information on the Internet that talked…
-
0
votes0
answers69
viewsQ: Angular JS Checkbox Questions
I have a little problem in my application, I have a Grid with check-box and a check-box to mark all. I want a job that weaning the check-box that marks all when you don’t have all the grid…
-
1
votes1
answer962
viewsQ: Passing Javascript Parameters to [Webmethod] C#
I would like to know how to pass parameters of a Javascript call to an ASMX Webservice Method without having to define a name for the parameters. Example: $scope.testar = () =>{ filtros ={ id:1,…
-
0
votes1
answer49
viewsQ: Problems Webservice ASMX
When I send a JSON return and the text is accentuated, JSON breaks. Here is the request code in the Controller $http.post("../backend/controller/SugestaoController.asmx/comboListarSugestoes", {…
-
0
votes2
answers2218
viewsA: Adding values with Angularjs
do so let items = [ {title: 'Chuveiro Elétrico', quantidade: 4, potencia: 3500}, {title: 'Ferro Elétrico', quantidade: 1, potencia: 1000}, {title: 'Ar condicionado', quantidade: 2, potencia: 1900}…
-
0
votes1
answer54
viewsA: UL with Checkbox Angularjs Problems
So this HTML is automatically generated by my controller, I created a directive called Tree, it is nothing more than a Checkbox tree right? I had an impasse when passing a ng-model property for each…
-
0
votes1
answer54
viewsQ: UL with Checkbox Angularjs Problems
I’m trying to create a Checkbox tree but I’m having problems with my directive when passing the model. Follows code: <ul class="main-level"><li> <mdi-input-checkbox mdi-reverse="true"…
-
3
votes2
answers501
viewsQ: How to traverse a hierarchical tree to generate an HTML
I’m having trouble generating a function responsible for traversing and returning a hierarchical tree. Follow code Javasript/JSON: let tree = { label: 'Elemento A', itens: [ { label: 'Elemento A1',…