Posts by J. Marco • 630 points
10 posts
-
0
votes1
answer1054
viewsQ: How to make a scroll with arrows?
I am working on a project for application in touch screen monitor, and I need to do the schematic as the following image. It will be a list of items, inside a div for example, and it will have to be…
-
4
votes1
answer869
viewsQ: Gallery with category filter
I need to implement the following: category buttons + category gallery I have several categories on my site and an image gallery for each one. On the front, I will create buttons with the categories…
-
1
votes1
answer171
viewsQ: How to keep option after refresh - Asp.net
I have a select, some options and a jquery code that in select change, updates the screen with the data of the chosen option. The question is, how do I maintain the option after window.Location?…
-
22
votes5
answers2467
viewsQ: What is a deprecated code?
What is a deprecated code (code depreciation)? I heard about in a video lesson and I was in doubt.
-
11
votes2
answers1625
viewsQ: Lambda Groupby by year and month
I have a list of events, and I’d like to group them by year and month, for example [Year 2017] Month January { Event 1, Event 2, Event 2 } Month February { Event 3 } [Year 2018] Month January {…
-
1
votes2
answers342
viewsQ: Filter for the next 90 days ASP.NET MVC
need to make a filter with Line in an entity, this filter should bring all events for the next 90 days. Today’s example: 11/01/2017 until 11/04/2017 (90 days) _con.SiteContexto.AsNoTracking()…
-
5
votes1
answer5696
viewsQ: Download failure when trying to update plugins in Wordpress
I did the installation of Wordpress locally, installed some plugins and now I’m trying to update the translations. What happens is that it does not update. Obs: use Easyphp and WP 4.6.1 It displays…
-
9
votes7
answers65838
viewsQ: How to run a C program in Visual Studio Code
I’m trying to run a code (program) in C in Visual Studio Code, but I can’t find the necessary settings. I installed the C/C++ extension (Microsoft) Project structure: .vscode - c_cpp_properties.json…
-
1
votes3
answers683
viewsQ: Find elements of a class Eno jQuery and add a parameter to them
I need to do a function in jQuery or Javascript, which finds all items with a particular css class and add a parameter for this class, a different color for example. I will put on a button, after…
-
1
votes2
answers70
viewsQ: Is it possible to do this with table td?
Okay let’s see: //PHONE <table> <tr> <td>COL 1</td> <td>COL 2</td> </tr> <tr> <td>COL 1</td> <td>COL 2</td> </tr>…