Posts by Newton Sandey • 37 points
4 posts
- 
		0 votes1 answer209 viewsQ: Convert DATE in SQL (Oracle) from UTC to Brazilian time zoneI have the following query: SELECT c.name, t.sequential_id AS sequencialid, CONCAT(SUBSTR (REPLACE (m.content, '¿', ''), 0, 30), '...') AS content, m.direction, (CASE WHEN TRUNC("M"."DATE") =… 
- 
		2 votes2 answers58 viewsQ: Javascript function being called too earlyI have a registration form that has, among others, the following field: <div id="Aditivo" class="col-xs-12 col-md-2"> @Html.LabelFor(model => model.NumeroAditivo, new { @class =… 
- 
		-2 votes1 answer138 viewsQ: When clicking on given th, open a ModalI have a grid that displays some fields, this way: <table id="listaNotas" lider-data-table="@Html.Raw(Json.Encode(Model)).ToHtmlString()" class="table-striped"> <thead> <tr> <th… 
- 
		0 votes1 answer52 viewsQ: Transfer value from one input to anotherI have a field for general search and other segmented search fields (Pending, Current, Closed), I want everything typed in general to be automatically passed to the segmented ones. I created this…