Re: Client side format string response to json array and display in jtextetable

2016-04-16 Thread schmitt kevin
> > problem resolved, error is due to bad json, i changed it and work, for testing my json array i'm gone https://jsonformatter.curiousconcept.com/ > . > -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop

Client side format string response to json array and display in jtextetable

2016-04-16 Thread schmitt kevin
Hello everyone, can you help me please? I try from Client side format string response to json array and display in jtextetable. My class javascript object : package project.client; import com . google . gwt. core . client . JavaScriptObject ; import com . google . gwt. core . client . JsArray

Re: How to use json in client side

2016-04-03 Thread schmitt kevin
thanks, finally i used a regex expression with split for get my string in client side, and i diplay witht flextable its more easy for me . -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails

How to use json in client side

2016-04-02 Thread schmitt kevin
Hello everyone , can you help me please? in my server wich connect with mysql databse i send to my client one json table like that rs = stmt.executeQuery("SELECT * FROM test"); res ="["; while (rs.next()) { String titre = rs.getString("id"); String auteur = rs.getString("comment"); res +=