Posts by fnx • 101 points
13 posts
-
0
votes2
answers794
viewsA: Sidebar with accordion effect
I found the solution. I had to make some modifications and use the class panel in the tags li of my sidebar. Was basically like this: <script…
-
0
votes2
answers794
viewsQ: Sidebar with accordion effect
Given a sidebar, how do I get the effect of a accordion? Currently, my sidebar works almost perfectly. This means that by clicking menus that have submenus, they are expanded. I’m just not getting…
-
0
votes1
answer252
viewsQ: Animation when expanding item in a sidebar
How to create a right shift effect (of the items) when expanding a menu option within a sidebar? You can do this using CSS only? I tried to use "Transition" but was unsuccessful.
-
0
votes0
answers41
viewsQ: Optical Mark Reader
I need to read a. pdf file and generate reports based on the data obtained from that file. I once made a specific system for a printer, which interpreted the responses of the candidates of a public…
-
1
votes0
answers35
viewsQ: Login page in SPA’s (Angularjs)
In the current scenario, I have an index.html that works as a kind of template. For example, in it I have a side menu, a toolbar at the top and, at the "center", a div (ng-view) to receive dynamic…
-
1
votes2
answers846
viewsA: Reading json file via Angularjs service
To add value, follow a respect guide: https://github.com/johnpapa/angular-styleguide/
-
1
votes0
answers45
viewsQ: VPS configuration
I acquired a VPS at Digital Ocean. The idea is to run an MEAN application. So I opted for the "One click apps" option they offer and the installation/configuration of my server was automatic. With…
-
1
votes1
answer43
viewsQ: Load database pages
How do I load database pages, so that Angularjs directives work? Currently, I am loading the pages with jQuery. The page loads perfectly. It turns out that when this occurs, the Angularjs boot cycle…
-
1
votes2
answers84
viewsA: has-error class does not disappear from the field
Great approach! I really wasn’t very happy with filtering in the mandatory fields with jQuery. I just had to adapt the ng-class of input, as I also consider $Dirty. Follows: <div…
-
0
votes2
answers84
viewsQ: has-error class does not disappear from the field
Given a customer form, valid some mandatory fields. Mandatory fields that are not filled in are automatically highlighted on the page to make life easier for the user. So far 100%. As the user sees…
-
2
votes0
answers135
viewsQ: Fadein and Fadeout with Angularjs
I would like to know the best practice when showing warnings to the user, using Angularjs. My scenario is basically the following: I have a div that represents all CRUD validations, within my…
-
0
votes5
answers3628
viewsA: modal boostrap opens and closes alone
Matheus, okay? Check your browser console. He’s probably complaining about some import that hasn’t been done. Remember that bootstrap.js depends on jQuery to work. It may be something in this sense!…
-
1
votes1
answer153
viewsQ: Delete method (Restful)
Would you like to know how I make a delete method that gets a list by parameters? I mean, instead of just passing the ID of the item to be deleted, I want to allow you to be selected N items and…