Posts by Murilo Ravani • 167 points
17 posts
-
2
votes1
answer109
viewsQ: How to disable Bootstrap 4 Popover on mobile only?
Today I use Popover in some places of my site, but I wish they did not appear in the mobile version. There is something in the call script that I can do so that it only appears in the desktop…
-
1
votes1
answer249
viewsA: Problem with images when buildar - Ionic 2
After much testing, I managed to solve the problem: All my images had at least one uppercase letter, and when typing the path in the code, I used only lowercase characters, ie: The browser did the…
-
-1
votes1
answer249
viewsQ: Problem with images when buildar - Ionic 2
I have a project and everything is in accordance as in this link: https://stackoverflow.com/questions/39952214/correct-way-to-use-image-assets-in-ionic-2 The images are in the src/Assets/img folder…
-
0
votes1
answer115
viewsQ: use variable to call ngFor in Ionic2
I have a variable that I display on the screen of my app called {{data.}}. In the example code: <ion-item *ngFor="let cardapiohotrod of cardapiohotrod |…
-
1
votes1
answer1896
viewsQ: Parameters and variables between components [Ionic + Firebase]
I’m with a seemingly simple doubt. I have a project connected to firebase. In this specific case, I have a *ngFor list of breweries on the "breweries.html" page where I pull all the main JSON nodes…
-
0
votes0
answers35
viewsQ: Use Ajax to load options from multiple selects after choosing an option
Ps.: This is not the same question already asked in another topic. This involves Ajax. I find it funny a lot of people marking it as duplicate without even reading the heart of each question or…
-
1
votes2
answers1484
viewsQ: Create a multi-category filter using a <select>
::EDIT:: Currently, the official code is like this, but the Almer code still does not work: Javascript <script> $(document).ready(function() { var arraySelects = ['modelo', 'massa'];…
-
0
votes2
answers951
viewsA: When clicking an option from a list, hide options from another select
The @Ack solution works perfectly in virtually any situation. Below I am putting a solution that would work specifically in my case, I am using the plugin Select2 in my form:…
-
1
votes2
answers951
viewsQ: When clicking an option from a list, hide options from another select
I would like, for example, when choosing the option '10 people' in the select 'Size', I could hide specific options in the selects 'Model', 'Fillings', 'Options to Drain' and 'Decoration'. Example:…
-
0
votes1
answer440
viewsQ: select multiple jquery inputs using the name attribute
I have a jquery script that selects a particular Select via the 'name' attribute and makes some changes to the label of another select: var selectRecheioGroup = $('select[name=recheio1]…
jqueryasked Murilo Ravani 167 -
0
votes2
answers581
viewsQ: Changing the contents of a <optgroup> label when selecting an option in another select
I would like to click, for example in the option "10 People"... It changed the label of several other selects, for example, this: "Special Fillings: R$10". I would like, for example, it to become…
-
1
votes1
answer393
viewsA: Problem generating build in Xamarin Android (No Resource found that Matches the Given name "at 'icon' with value '@mipmap/icon')
I found a 'solution/gambiarra' that 'solves' the problem: I went to Mainactivity.Cs and edited line 12 by clearing the reference on @mipmap/icon, leaving only this way: [Activity(Label =…
-
1
votes1
answer393
viewsQ: Problem generating build in Xamarin Android (No Resource found that Matches the Given name "at 'icon' with value '@mipmap/icon')
I am a designer trying to learn how to assemble screens for Android applications through Visual Studio, using Xamarin Android, so pretty beginner in technical terms related to the area... I started…
-
3
votes1
answer5329
viewsQ: Calling PHP variable inside a Javascript function
Inside the Nivoslider . js, I have the following line calling the two slider arrows (left and right): slider.append('<div class="nivo-directionNav"><a class="nivo-prevNav"><img…
-
1
votes2
answers2628
viewsQ: How do I refresh the page after uploading images?
I am using the following codes to upload images and then display them: Here is the HTML: <form id="formImage" style="display:none"> <input type="file" id="fileUpload" name="fileUpload[]"…
-
2
votes2
answers1048
viewsQ: How do I change the value of a PHP variable by clicking a link?
For example, I have a variable called: $idEmpreendimento = "1"; I wish that by clicking on a given link, I could change this value to 2. It is possible? --------------------------- EDIT ~ Solution…
phpasked Murilo Ravani 167 -
1
votes3
answers1241
viewsQ: Slider in jQuery (Nivo Slider) does not work when it is inside a content loaded via Ajax
I’m using the Nivo Slider plugin to create a slider on my page. If I put the slider structure directly on the page, it loads right... but if it is inside a content loaded via ajax, just nothing…