Posts by Alexandre • 73 points
8 posts
-
1
votes1
answer1291
views -
1
votes1
answer431
viewsA: Query to turn columns into records
Found the following solution to solve this problem and return the columns. SELECT COLUNA, VALOR FROM( SELECT tab1.campo1 'tab1.campo1', tab1.campo2 'tab1.campo2', tab1.campo3 'tab1.campo3',…
-
1
votes1
answer431
viewsQ: Query to turn columns into records
I have a query that involves several tables in Oracle, and returns a large number of columns. I wanted instead of returning the records of this query, return me the columns of select as records. An…
-
0
votes2
answers545
views -
2
votes1
answer363
viewsQ: Validation ASP.NET Form in Bootstrap Tabs
I have a form on ASP.NET with its content divided into Bootstrap Tabs. However, some of these fields are required (Required) or are type="number" and "email", if they do not agree, sending the form…
-
1
votes6
answers1754
viewsA: Hide dives after selecting another category
Here’s an example, of course, you’ll need to make some validation changes (whether it’s by ID, or whatever). But try this logic: < div id="id_1" class="hide">Div 1< /div> < div…
-
0
votes1
answer301
viewsA: Postback checkbox Asp.net with Switchery plugin
I was able to fix it. In case someone has the same problem I had, follow an event on Javascript to force the Postback: <script> $(".js-switch").change(function () {…
-
1
votes1
answer301
viewsQ: Postback checkbox Asp.net with Switchery plugin
I’m putting together a list of records in a table with Asp.net. I create a checkbox for each line to perform a postback action every time the checkbox is checked or unchecked. I use the Switchery…