Posts by William Manesco • 70 points
6 posts
-
1
votes0
answers80
viewsQ: Communication with keyboard with PS2 display
I need to develop communication with the display of a keyboard (44key keytec mark) using windows. In C, for linux, using #include , the inb() and outb() functions works correctly. For windows, the…
-
1
votes1
answer417
viewsA: Update specific element in a Mongoose array
Face actually this remarks should not be an array but another document from Mongo. Something like this: const mongoose = require('mongoose'); const Schema = mongoose.Schema; const _UsersSchema = {…
-
0
votes1
answer85
viewsQ: Tag SELECT is duplicating with Materializecss and Angularjs
Then, I have in a view a select, as the code below: <select ng-model="Dashboard.FiltroChamadas.grupoSelecionado"> <option value="" disabled selected>Selecione um grupo</option>…
-
3
votes1
answer243
viewsQ: jQuery + Angularjs + Materialize CSS error
I have the following procedure in my angular controller: $(document).ready(function(){ angular.element('.button-collapse').sideNav(); angular.element('.parallax').parallax(); }); I’m starting these…
-
0
votes1
answer238
viewsA: Parallax Component - Materializecss and Angularjs
Problem has been solved by initiating this way $(document).ready(function(){ $('.button-collapse').sideNav(); $('.parallax').parallax(); }); In the controller of the page that has these components.…
-
0
votes1
answer238
viewsQ: Parallax Component - Materializecss and Angularjs
I am using in a page, Angularjs and materializecss. I am doing the angular SPA scheme, in my index.html I have a menu and a footer and among them have the tag <div ng-view></div> I use…