Posts by Gerson • 299 points
14 posts
-
0
votes0
answers47
viewsQ: Android Toolbar getting behind topbar
What may be occurring, Toolbar is staying behind the topbar as in the image below This is happening in the versions 4.4.2 and 4.1.1…
-
1
votes0
answers243
viewsQ: Android sending POST Json using JAX-RS receiving object with null array
I am trying to post an object but the array only comes null.. someone can tell me what is wrong? @XmlRootElement public class Produto implements Serializable{ private String nome; get e set...…
-
0
votes0
answers88
viewsQ: URL Restful service working, but on ANDROID returns null
I’m trying to develop a service Rest for my father’s store, I’m able to bring the results in JSON through the URL, but when I try to execute the same method on android to try to fill the object, it…
-
1
votes2
answers2504
viewsQ: How to run a JS or jQuery function after an update, Reload in JSF and Primefaces?
I need to run this function after a button gives an update="@form" on the page <script type="text/javascript"> function carregaCss(){ $(".ui-icon-calendar").addClass("glyphicon…
-
1
votes1
answer187
viewsQ: Display blocked user message on Membership
I need to display a message when the blocked user tries to log in to Membership... I set the locked user with the Isapproved = false property; at the time of registration MembershipUser lockUser =…
-
1
votes2
answers1405
viewsQ: Best way to add multiple order items to a table
When I add a request to the table TB_PEDIDOS, TB_PEDIDOS: ID_PEDIDO, DATA_PEDIDO, ID_CLIENTE I also need to add order details to another table: TB_DETALHES_PEDIDOS: ID_PEDIDO, ID_PRODUTO,…
-
0
votes2
answers399
viewsQ: Listview inside Listview or Repeat inside Repeat?
I need to display some products divided by category, the categories are created by the user and both come from the database TB_CATEGORIA, TB_PRODUTOS, has how to do with Listview, Repeat? For…
-
1
votes3
answers1948
viewsQ: Set value of a null or Empty ROW on a gridview
I bring a Datatable from the database and fill in a gridview, need to leave some ROWS blank or with nothing, but the fields are numeric and do not accept string or other kind. DataTable dt =…
-
1
votes1
answer474
viewsQ: Registration via facebook api
I would like to know how to set up the facebook app so that it can receive data from any user.. I tried unsuccessfully defining these 2 fields that facebook provides me: FaceBookConnect.API_Key =…
-
3
votes2
answers538
viewsQ: How to update ASP.NET Repeater in real time?
I have a Repeater in a lateral div that receives the quantity of products from the cart and needs to be updated every click. I’ve tried to rpt.Databind() in the Click event but the Reset only…
-
5
votes2
answers351
viewsQ: How to recover from an Exception and send data from it?
I wonder if there is any way for when my system launches some kind of Exception it recovers only and sends me an email stating where it occurred and which Exception was launched!
-
7
votes1
answer462
viewsQ: Using Cookies or Databases?
I need to create a cart where you store more than one data Example: ID_PRODUTO, ID_VENDEDOR I would like to use Cookies pro system get lighter, but I found a big problem, the Cookie stores the data…
-
3
votes3
answers3820
viewsQ: Changing LABEL value by Jquery or Javascript does not work in ASP.NET
Use this JS function in ASP.net: function habilitado(){ var b = document.getElementById('<%= Label4.ClientID %>').value = "Habilitado"; } I call it that in codebehind. The value of the label…
-
5
votes3
answers593
viewsQ: Find string in more than one SQL table
I would like to search for a certain string using LIKE in more than 1 table. Here is an example of how I did, which will probably spend a lot of time or will not search in all tables: string SQL1 =…