Posts by Daniel Pelissari • 55 points
11 posts
-
0
votes2
answers3506
viewsA: Pop up only once per user - Cookies
Example of modal working with cookie expiring in 24h using Jquerycookies. $(document).ready(function () { // cookie para exibir uma vez por dia if($.cookie("modal") == null){ setTimeout(function ()…
-
-1
votes14
answers126839
viewsA: Phone Mask Using jQuery Mask Plugin
This way you can add an optional digit. $(function ($) { $("#telefone").mask("(99)9999-9999?9"); });
-
0
votes1
answer169
viewsA: React: Display HTML in modal React Boostrap
I was able to solve by making a request to the cvs folder like this with Xios: abriModal(palestrante) { // seta um estado para o objeto cvpalestrante de acordo com o palestrante clicado…
-
0
votes1
answer169
viewsQ: React: Display HTML in modal React Boostrap
I’m developing a SPA in React for an event and need to consume a folder with files HTML and display them in a modal of the React Boostrap, basically I have a section where is displayed all the…
-
0
votes1
answer481
viewsQ: Redirect after post in api with Reactjs files
Good morning, I am trying to create a login screen in Reactjs where a post is done on an api, after sending the user email and password, the API returns the JWT authentication token. API post in my…
-
1
votes1
answer864
viewsA: Reactjs - Typeerror: Cannot Convert Undefined or null to Object
Solved! I was setting twice the state of my component. I now set in my constructor method as follows: constructor(props) { super(props); this.state = { modal: false, palestrantes: {} };…
-
0
votes1
answer864
viewsQ: Reactjs - Typeerror: Cannot Convert Undefined or null to Object
Good afternoon, I have a component where I consume data from an API, so far so good! I am trying to add a reactstrap modal and am facing the following error: Typeerror: Cannot Convert Undefined or…
-
0
votes1
answer158
viewsQ: How to arm selected checkbox in an array in c#
Hello, I’m new in development in c# and have in my form an option for fruit selection Grape[] Pera[x] Apple[] Banana[x] How I could store in an array only the selected checkbox?
-
1
votes2
answers587
viewsQ: Adjustment of bootstrap buttons
Hello, I need to adjust the buttons of the bootstrap Cap to be next to the photo, today as the attached photo buttons exceed the desired area. someone can help me? This is the html code of my…
-
0
votes0
answers31
viewsQ: Export menu highcharts cutting
Items from the highcharts export menu are cutting, does anyone know how to fix this problem? What if the highcharts have something native to it?…
-
2
votes1
answer87
viewsQ: Hide ng-repeat item after 5 seconds
I am making a task app to do (To from the list), I would like to know how to hide an item after 5 seconds after selecting the item through my checkbox. I have the following HTML structure: <body…