Posts by Marcos Henrique • 97 points
7 posts
- 
		-1 votes2 answers1433 viewsA: How to refresh a bootstrap-table after giving update?Solved in an alternative way... Location.Reload(); <- In Javascript, after clicking the button. 
- 
		0 votes2 answers1433 viewsQ: How to refresh a bootstrap-table after giving update?Next, in the rows of my table bootstrap when I click opens a modal where I can change the selected information after click. I wanted that right after I clicked on the change button, my table (and… 
- 
		0 votes1 answer820 viewsQ: How to Filter Table through inputs and click on a button?I have a table with several columns and rows (populated with jquery), and I wanted to filter after clicking a button, and Filtre according to what is written in the input. How does it ? I’m still… 
- 
		0 votes2 answers162 viewsA: How to delete a selectbox with Javascript one by oneI decided by doing this... var perguntaId = 0; $(document).ready(function () { $('#addpergunta').click(function () { var itemCont = $("#itemCont").val(); var novoItem = $("#pergunta_1").clone();… 
- 
		0 votes2 answers162 viewsQ: How to delete a selectbox with Javascript one by oneHello... I have a button that by clicking the "addpergunta" button "clones" my selectbox which is like "Select the Question...". With each click it adds one more each time incrementing id to make it… 
- 
		6 votes1 answer13619 viewsA: How popular is a select with Jquery, JSON and AJAX ? (MVC)I was able to arrange... Ta ai for those who have the same doubt as me. $(document).ready(function () { $.ajax({ type: "get", url: "/Empresas/SelecionarEmpresas", data: { empresa:… 
- 
		3 votes1 answer13619 viewsQ: How popular is a select with Jquery, JSON and AJAX ? (MVC)I followed some codes I found here of how popular a selectbox, but it is not working, is it missing something ? I’m getting a list of data with my Controller. Javascript $(document).ready(function…