Posts by Gabriel Midão • 85 points
15 posts
-
-1
votes1
answer152
viewsQ: Doubt in error . map is not a Function
I created a table with 5 dropdowns, each one receiving its content from an api. But sometimes when the page reloads I get the error "filterL" is not a Function,in case it happens to any of . map I…
reactasked Gabriel Midão 85 -
0
votes1
answer301
viewsQ: How to pass props from the React-table to another screen
I created two screens, one has a table using the React-table component that has three columns: code, group and edit button for each row. The other screen has a box with two text boxes where, when…
reactasked Gabriel Midão 85 -
1
votes1
answer397
viewsQ: Changing text depending on the value returned from the Reactjs table api
I created a table using the Reacttable component and am feeding it data from an api. One of these data returns as 0 or -1 and I want to treat them so that if it comes 0 it appears "Enabled" in the…
reactasked Gabriel Midão 85 -
0
votes1
answer61
viewsQ: Responsiveness to modal
I have a page where I created a modal with some text boxes inside, nothing very elaborate. When I change the screen resolution to very low resolutions like 800x600 my modal deforms a lot, it gets…
-
0
votes1
answer215
viewsQ: Checkbox checked/unchecked when receiving 0/-1 from server
I have a checkbox inside a modal that passes to the server by clicking a button the value 0 if it is not checked or the value -1 if it is checked. Now I am trying to do the reverse process, if it is…
-
-1
votes1
answer809
viewsQ: Error making request in Ajax
I am sending a request by ajax to my REST server and am getting back: Access to Xmlhttprequest at 'http://localhost:8081/datasnap/Rest/Tcadastros/Group/' from origin 'null' has been blocked by CORS…
-
1
votes0
answers111
viewsQ: Ajax PUT returning error 500
I did an ajax to use the PUT method to update the field of a table but the server (Rest) is returning me error 500 and I do not know what I’m doing wrong, someone can give me a light please? Error…
-
1
votes2
answers1137
viewsQ: Store JWT token and redirect
I created a login screen and when I click login I get back a JWT token and its expiration. What I want to do is store this token and redirect it to another page. I know I have to do the…
-
2
votes0
answers328
viewsQ: Login with authentication token using jquery and ajax
I’m venturing to try to log in using token for authentication, using jquery and ajax. I have the user screen and password with the login button and another screen where there is a table with…
-
0
votes1
answer347
viewsQ: Button to edit table on click
I am trying to edit the information that has in the columns of my table, when I click on the edit button it opens a modal and already pulls the information of that line in specific, what I am trying…
-
1
votes1
answer147
viewsQ: Pull content from within a table to text boxes within the modal
I have a table whose contents come from a server, in json. Each row of the table has a code number, a product name and an edit button, when clicking this edit button opens a modal where there are…
-
1
votes1
answer35
viewsQ: How to include buttons from another button in Jquery
I have a table whose contents come from a json that consists of a column with a number, one with a name and one with two buttons, changing and deleting the row. When I click the button to create a…
-
0
votes2
answers63
viewsQ: How to add new table row with contents from text box with post ajax
I have a table created using html and javascript, the contents of it I used ajax’s GET method to pull a url, in JSON. I’m trying now using POST in ajax to add content to this table, where I write in…
-
0
votes1
answer80
viewsQ: Keep tab color after clicking on it
I created some tabs, when I move the mouse over each of them shows the color I sent but when I click to open the contents of the tab I would like to keep the color, showing which tab is open,…
-
0
votes1
answer40
viewsQ: Ajax is not returning json in the html table
I’m trying to make a table where its contents come from an http. I am using Ajax and Json to pull the content but does not return anything on the screen other than what is written in HTML. I’m still…