Posts by Perci Mantovani Filho • 33 points
5 posts
-
0
votes1
answer36
viewsA: Tabs - Return to desired tab
I thought I’d put one more parameter in onclick, so: onclick="window.location.href='@Url.Action("Details", "Fornecedores", new { id = @TempData["FornecedorId"], selectTab = 2})'"> Then, when you…
-
0
votes1
answer36
viewsQ: Tabs - Return to desired tab
Good morning, you guys! In my Suppliers register, in View Details, I have a Tab with the tabs: Data, Contacts and Purchases, and when I click on the Contacts tab, there is a button to register a new…
-
3
votes1
answer108
viewsQ: Search for missing record range
Imagine the following situation: a table looks like this: Id (int) - Codigo (int) - Descricao (varchar) 1 - 01 - Descrição 1 2 - 03 - Descrição 2 3 - 04 - Descrição 3 4 - 05 - Descrição 4 Note that…
-
0
votes1
answer74
viewsA: Pass a view’s value to modal
Well, the modal will open the Create view: @using (Html.BeginForm()) { @Html.AntiForgeryToken() <table style="margin:auto"> @Html.ValidationSummary(true, "", new { @class = "text-danger" })…
-
-1
votes1
answer74
viewsQ: Pass a view’s value to modal
Starting my studies in MVC I am doing a CD registration. I happen to have a view with artist details (Artists/Details/1). In this View, I have a "New" button to type a new artist CD and that opens a…