Posts by Raul Marques • 23 points
5 posts
-
0
votes0
answers203
viewsQ: Open Keyboard in list - React Native
I’m trying to implement a chat in my app, but when I open the keyboard to start a conversation, the conversation is released from the display. Here’s my code and a gif of what’s going on. import…
-
0
votes3
answers1003
viewsA: Pass value to service Factory in Engineering
I think this helps you: $http.get({ url: config.baseUrl + '/atividades', method: "GET", params: {pagina: param1, total: param2} }) Here shows other possibilities and types of arguments that can be…
-
0
votes2
answers349
viewsA: select and count checkbox
I think this will help you, Leo. I used Jquery because I saw that Voce made the use and separated the checkbox by CSS class, as it may be that I want to select and check a certain set of checkbox.…
javascriptanswered Raul Marques 23 -
0
votes4
answers3995
viewsA: How to make a link button in Angularjs
would look like this: <button class="btn btn-primary" ui-sref="cadastro" > <span class="glyphicon glyphicon-plus"></span> <span > Cadastrar </span> </button> It…
angularjsanswered Raul Marques 23 -
2
votes1
answer254
viewsQ: Access Function declared in the Directive controller by transcluded objects
I am trying to create a Directive that has its Scope isolated, but that has some functions that she will be responsible for doing p/Directive. It is a div that contains a table and an "Add" button…