Posts by DeRamon • 340 points
15 posts
-
0
votes1
answer155
viewsA: No "Typescript task runner" - vsCode
This happens because you must be using as reference some video lesson that used the version of Vscode less than 1.13 [1]. In the latest versions you will find only the option Tasks: Configure…
-
3
votes1
answer192
viewsA: Malicious code not identified
In most cases, this type of "hack" happens because of outdated plugins, outdated core version or even use of already infected themes. It happens a lot, you sometimes want to have a premium theme but…
-
2
votes4
answers10668
viewsQ: How to create a Boolean column on Oracle?
As far as I know, Oracle does not provide a valueType of the kind Boolean. I am working a short time with Oracle and would like to know what is the best solution to "simulate" a true/false value in…
-
2
votes2
answers98
viewsA: Faster way to add an item to a list, using a structure
You need to start creating a Class, do not recommend using Structure for this type of problem. You can make a list of structures, but it’s simpler and more functional to use a class. Structures are…
-
1
votes2
answers1487
viewsA: How to add sorting indicators to a table?
You can use Datatables. It’s a very useful js library for any sort of sorting you need in your Datatables. Follow an example: <table id="example" class="display" cellspacing="0" width="100%">…
-
0
votes1
answer156
viewsA: What is the alternative to the showmodaldialog function?
Since you are using webforms, a good alternative would be to use the modal of bootstrap, they are elegant and work very well. <button type="button" class="btn btn-primary btn-lg"…
-
1
votes1
answer492
viewsA: Select com Update
If your intention is "lock" on the record so no one changes before you make your update, recommend using the FOR UPDATE. Example: SELECT nome FROM clientes WHERE nome = 'josé' FOR UPDATE; UPDATE…
-
1
votes1
answer502
viewsA: Orchestration web service
Orchestration In SOA/BPM orchestration is the composition of services to create a new service or to solve a task of a business process. In this case, there is always the figure of a central point. A…
-
4
votes2
answers745
viewsA: Compare javascript dates!
You can use the library Momentjs to do date operations in javascript. For example: if (moment($('[id$=_txtData]').val(), "DD/MM/YYYY").isBefore(Date())) { //regra aqui } On their website you will…
javascriptanswered DeRamon 340 -
0
votes2
answers315
viewsA: Request Validation Asp.net
In your page directive, put the following code setting Validaterequest to false. <%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true"…
-
0
votes3
answers145
viewsA: DER Student Question Theme
In the entity Activity, you can include a field with the answer and even whether it is correct or not, maybe a field for some kind of observation. And based on that relationship you’ll be able to…
-
4
votes1
answer121
viewsA: How to create an Event on a Webservice
Simply and without knowing much of your environment, you will need to create a kind of Schedule. A program console, who has a timer or that it is programmed to run from time to time, observing the…
-
1
votes1
answer380
viewsA: Datagridviewcomboboxcolumn loses selected value
Friend, I do not know if I understand your question, but if I understand, in this case you should use Itemtemplate. Follow an example below: <div class="row"> <asp:DataGrid ID="datagrid"…
-
-1
votes1
answer1982
viewsA: How to postback the Asp.net page with Javascript or Jquery
So, the first thing that has to be clear is this, you want when the guy clicks on the "tag" it to give a post on the page or you want to do this with javascript? If you want to give a post, you need…
-
0
votes3
answers105
viewsA: Usercontrol to control Logon Schedules
Friend, once I had to develop something similar, but much less complex, I used a table, and in the core I put a Datalist, the cool of the datalist is that in each Itemtemplate you have freedom to…