Posts by Fonts • 169 points
9 posts
-
0
votes1
answer193
viewsA: How to customize Swiper React.js Arrow in jsx or Styled.Component
Hello, At its core the React swiperjs has no means of working with styledComponents or style, as per documentation of them, the options available are: manipulate the CSS styles work with LESS work…
-
4
votes1
answer205
viewsA: How to recover data from Angular Route component?
Hi, To recover the data follow the example below: Bankaccountscomponent: class BankAccountsComponent { constructor(private route: ActivatedRoute) {} ngOnInit() { this.sub = this.route .data…
-
2
votes2
answers564
viewsA: Pop-up effect with HTML, CSS and Bootstrap
Hi, I believe that what would be faster for your case would be a Javascript Library calling for TO. There are several examples of how to create custom animations: -…
-
1
votes1
answer99
viewsA: How to allow an App to send notification
Whereas you skipped the Push Notification configuration step in the project to display the permission notice, add the command below in the . Swift you want to treat the warning, this can be…
-
1
votes1
answer347
viewsA: Razor MVC - When using @using (Html.Beginform()) the fields are not in front of each other
Try removing the tag below. You are nesting form within form, which causes side effects: <form role="form" class="form-inline"> Also, when we use the snippet Beginform Razor will write the tag…
-
0
votes1
answer101
viewsA: Format object with object array in properties - variable scope problem
You are solving the problem before you finish the querys within the for. Try to check if it is the last iteration before returning the reply to the client. The code would be next to the below: for…
-
1
votes1
answer691
viewsA: What’s the difference of putting -g in package installations by npm, webpack, etc...?
The main difference between installing a package globally is that you start executing the commands on the command line, according to the [doc of…
-
0
votes1
answer142
viewsA: Actions within webview - iOS
Analyzing your code I found that: No communication between client (web page) and container (iOS). The Uiwebview component was depreciated consequently, use the Wkwebview. Thus, to display the alert…
-
1
votes2
answers412
viewsA: Javascript: How to pick up an array of objects within a child of an array of objects
Following the structure of the company const. If you want to get them all as of the list groupos: for (let grupo of empresa.groupos) { console.log(grupo.as); } If you want to filter by group…