Posts by Paula NS • 33 points
5 posts
-
0
votes1
answer196
viewsQ: V-if to check if checkbox is checked
How do I make a v-if "If the v-checkbox is checked" ? tried v-if(model-name == true) did not work
-
1
votes2
answers256
viewsQ: Table take margins in media print
I have a table and I’m trying to take her margins at the time of printing with media print, however I’ve tried: margin: 0 0 0 0 !important; padding: 0 0 0 0 !important; And nothing works and I need…
-
0
votes1
answer38
viewsQ: Is there any way to load Script or CSS that is placed in Buddles in ASP.NET only in a single View?
Usually when I download the plug-in in Visual Studio in Nuget, it is necessary to put script and css in Buddles however these scripts are loading in all my Views even those that are not using, so I…
asp.net-mvcasked Paula NS 33 -
0
votes2
answers1346
viewsA: When clicking on a button open content in a div by clicking on another button delete content from the div and open the new
Utilize: function TrocaDivs { $('#idDaDivQueVaiDesaparecer').css("display","none"); $('#idDaDivQueVaiAparecer').css("display","block") } And calls on the button you want the function with the…
-
2
votes3
answers5329
viewsQ: How to Remove Header and Footer with @media print CSS?
I’m using the @media print{} CSS to customize the page when printing, but I’m not able to remove the footer and header created by own browser. I know it can be removed by the settings of Browser,…