Re: [Stripes-users] Getting users location

2017-07-09 Thread Joaquin Valdez
I typically get the setting from the browser locale and language. Joaquin > On Jul 9, 2017, at 11:18 AM, Heather and Jon Turgeon > wrote: > > Hi all, I am trying to get the users general location server side (the > country). I have tried

[Stripes-users] stripes 1.7

2017-03-28 Thread Joaquin Valdez
Hello! Just curious if there is any news on the release of Stripes 1.7? Or is there a feature list of Stripes 1.7. Thanks, Joaquin Valdez joaquinfval...@gmail.com -- Check out the vibrant tech community on one

Re: [Stripes-users] form with an embedded id

2016-04-18 Thread Joaquin Valdez
Thanks Rick. Once I escaped the “|” all worked just fine. Thanks for the idea and help. String[] dates = combinedId.split( “\\|" ); Joaquin Valdez joaquinfval...@gmail.com > On Apr 16, 2016, at 12:37 PM, Rick Grashel <rgras...@gmail.com> wrote: > > Joaquin, > >

Re: [Stripes-users] form with an embedded id

2016-04-16 Thread Joaquin Valdez
site primary keys, I almost always have a pseudo > single-field setter/getter for convenience and Type conversion. > > -- Rick > > >> On Sat, Apr 16, 2016 at 1:16 PM, Joaquin Valdez <joaquinfval...@gmail.com> >> wrote: >> Thanks Rick! >> >> The

Re: [Stripes-users] form with an embedded id

2016-04-16 Thread Joaquin Valdez
@Basic(optional = false) @NotNull @Column(name = "EndDate") @Temporal(TemporalType.TIMESTAMP) private Date endDate; // getters and setters... } How would I reference this type of Primary key in the hiddent INPUT tag? Thanks! Joaquin Valdez joaquinfval...@gmail.com >

[Stripes-users] form with an embedded id

2016-04-16 Thread Joaquin Valdez
. Thanks! Joaquin Valdez joaquinfval...@gmail.com -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business

Re: [Stripes-users] Writing to response.writer is not working

2016-01-23 Thread Joaquin Valdez
Hi! Is this the same idea as this: https://stripesframework.atlassian.net/wiki/display/STRIPES/Wait+Page+for+Long+Events ? Joaquin > On Jan 23, 2016, at 10:52 AM, VANKEISBELCK Remi wrote: > > Hi again, > > Seems like a regular "long running job / polling" scenario. It can

Re: [Stripes-users] Stripes Framework + Knockout.js

2016-01-11 Thread Joaquin Valdez
I haven’t used Knockout but I did learn a lot this: https://github.com/rgrashel/stripes-ember Joaquin Valdez joaquinfval...@gmail.com > On Jan 11, 2016, at 1:56 PM, William Krick <kr...@3feetunder.com> wrote: > > Is anyone using Stripes and Kn

Re: [Stripes-users] Newbie

2015-12-21 Thread Joaquin Valdez
I have that one too..Its condensed and good as well. Joaquin Valdez joaquinfval...@gmail.com > On Dec 21, 2015, at 9:49 AM, Arnold <arnol...@gmail.com> wrote: > > Have you had a look at this book: > > http://www.amazon.com/Stripes-Example-Brent-Watson/dp/1484209818/re

Re: [Stripes-users] Newbie

2015-12-21 Thread Joaquin Valdez
I find the book to be relevant and still a good resource from time to time. Joaquin Valdez joaquinfval...@gmail.com > On Dec 21, 2015, at 8:02 AM, tika <trimtostri...@gmail.com> wrote: > > Hi all. > > I haven't been programming web apps for a long time and now I want

Re: [Stripes-users] Integrate Hibernate or eBean with Stripes

2015-08-21 Thread Joaquin Valdez
Yes please. Joaquin Valdez joaquinfval...@gmail.com 1.541.702.1281 On Aug 21, 2015, at 2:30 PM, Remi Vankeisbelck r...@rvkb.com wrote: Nice, I didn't know it was still available. We should move the code to gh and add some docs in the wiki ? Cheers Rémi De : Tom Coleman mailto:tcole

Re: [Stripes-users] [Stripes-dev] Stripes 1.6 Released!

2015-07-23 Thread Joaquin Valdez
woohoo! -Joaquin On Jul 23, 2015, at 3:09 PM, Rick Grashel rgras...@gmail.com wrote: Hi all, I wanted to take this opportunity to announce the formal release of Stripes v1.6. For those who are running earlier versions of Stripes (v1.5.8 or earlier) or even earlier versions of

Re: [Stripes-users] Action with an epub resolution

2015-05-05 Thread Joaquin Valdez
yourpackage.ext; public class MyActionResolver extends NameBasedActionResolver { @Override protected String getBindingSuffix() { return .abc; } } Joaquin Valdez joaquinfval...@gmail.com 1.541.702.1281 On May 5, 2015, at 6:51 AM, Heather and Jon Turgeon tashiba40_evergr...@hotmail.com wrote: Hello all

Re: [Stripes-users] using stripes select just for the collection feature

2015-03-17 Thread Joaquin Valdez
I wonder if the dynamic tag library would help out here? Joaquin On Tue, Mar 17, 2015 at 11:08 AM, William Krick kr...@3feetunder.com wrote: I have a stripes:select that I'm using to provide a list of items to the user using the stripes:option-collection. When an item is selected in the

Re: [Stripes-users] CMS Integration with Stripes

2015-03-02 Thread Joaquin Valdez
Thanks Rick! Off topic a bit, but how are login credentials handled with this framework when calling a rest method? Thanks Joaquin On Feb 28, 2015, at 7:13 AM, Rick Grashel rgras...@gmail.com wrote: Hi guys, I also had similar issues writing REST services with Stripes. I

Re: [Stripes-users] cancel file upload

2015-01-16 Thread Joaquin Valdez
side? Cheers Rémi De : Joaquin Valdez mailto:joaquinfval...@gmail.com Envoyé : ‎16/‎01/‎2015 05:52 À : Stripes Users List mailto:stripes-users@lists.sourceforge.net Objet : [Stripes-users] cancel file upload Hello! What are ways to abort a file upload once it has been initiated

Re: [Stripes-users] cancel file upload

2015-01-16 Thread Joaquin Valdez
, Jan 15, 2015 at 10:51 PM, Joaquin Valdez joaquinfval...@gmail.com mailto:joaquinfval...@gmail.com wrote: Hello! What are ways to abort a file upload once it has been initiated ? s:form beanclass=com.silly.action.UploadActionBean enctype=multipart/form-data divs:hidden name

Re: [Stripes-users] JSP expression language and stripes framework

2014-11-21 Thread Joaquin Valdez
I do this using JSTL but I am sure there is a better way: c:if test=${actionBean.context.user != null}” // do stuff /c:if You could also do this: c:choose c:when test=${actionBean.context.user != null}” // do something... /c:when c:when test=${actionBean.context.user

Re: [Stripes-users] Stripes - HTTP Error 404

2014-11-15 Thread Joaquin Valdez
I think its this line: private static final String TABLE = /WEB_INF/jsp/part/expense_table.jsp”; == notice the underscore should it be a “-“ Joaquin On Nov 15, 2014, at 7:37 PM, Joe jrk...@gmail.com wrote: More context - the directory structure and jsp's. \WEB-INF \jsp

[Stripes-users] stream resolution file download

2014-10-03 Thread Joaquin Valdez
Hello! I seem to have trouble with the results of downloading an Excel spreadsheet (XLS or XSLX) file using the following code: public Resolution getAttachment() { Attachment attachment = attachmentDao.read(getAttachId()); if

Re: [Stripes-users] stream resolution file download

2014-10-03 Thread Joaquin Valdez
On Fri, Oct 3, 2014 at 8:16 AM, Joaquin Valdez joaquinfval...@gmail.com wrote: Hello! I seem to have trouble with the results of downloading an Excel spreadsheet (XLS or XSLX) file using the following code: public Resolution getAttachment() { Attachment attachment

Re: [Stripes-users] stream resolution file download

2014-10-03 Thread Joaquin Valdez
AM, Joaquin Valdez joaquinfval...@gmail.com wrote: Thanks Rick! To read using BaseDaoImpl: @Override public T read(ID id) { return Stripersist.getEntityManager().find(getEntityClass(), id); } To store the attachment: private void addAttachment(FileBean

Re: [Stripes-users] validation return url

2014-06-02 Thread Joaquin Valdez
ForwardResolution(“/MainForm?id=3); } /Janne On 2 Jun 2014, at 04:23, Joaquin Valdez joaquinfval...@gmail.com wrote: Hello! Is it possible to control the return url when a validation error is triggered by the following line: @Validate(required = true) private String customername; If I

[Stripes-users] validation return url

2014-06-01 Thread Joaquin Valdez
to MainForm.action?id=3 Thank you Joaquin Valdez smime.p7s Description: S/MIME cryptographic signature -- Learn Graph Databases - Download FREE O'Reilly Book Graph Databases is the definitive new guide to graph databases

Re: [Stripes-users] adding event names to links

2014-03-07 Thread Joaquin Valdez
Hi Chris, Wouldn’t URL Binding might make it prettier? Joaquin On Mar 7, 2014, at 3:23 PM, Chris Cheshire cbcnospam-stri...@yahoo.com wrote: In an action bean I have a few handlers, for example handler1, handler2, handler3. If I add those to the event param in a stripes:link

[Stripes-users] stripersist +multiple databases

2013-09-07 Thread Joaquin Valdez
Hi - What is the preferred way of connecting to multiple databases with the same structure in a Stripes app? I have a project where on the login page credentials are entered and a cilent is chosen. Based on the client. I would like my application to connect to that client database for the

Re: [Stripes-users] URL Binding with multiple URLs

2013-07-24 Thread Joaquin Valdez
This would be great! Joaquin On Jul 24, 2013, at 9:19 AM, Ben Gunter bgun...@cpons.com wrote: It would seem you are not alone. http://stripesframework.org/jira/browse/STS-895 On Wed, Jul 24, 2013 at 11:18 AM, Adam Stokar ajsto...@gmail.com wrote: That's not a very scalable solution.

Re: [Stripes-users] switch to https

2013-04-19 Thread Joaquin Valdez
This is how I do it in an ActionBean: @DefaultHandler @DontValidate public Resolution form() { if (getContext().getRequest().isSecure()) { return new ForwardResolution(WELCOME); } else { return new

[Stripes-users] Action bean file upload

2013-04-12 Thread Joaquin Valdez
Is it possible to have an action bean accept file uploads from an external site? Sample code would be appreciated! Thank you, Joaquin -- Precog is a next-generation analytics platform capable of advanced analytics on

Re: [Stripes-users] Stripes Problem

2013-01-05 Thread Joaquin Valdez
I do something like this in my ActionBean: private static final String VIEW = /WEB-INF/jsp/some_form.jsp; @DefaultHandler @DontValidate public Resolution view() { return new ForwardResolution(VIEW); } Maybe your jsp file is in a folder under WEB-INF? Joaquin On Jan

Re: [Stripes-users] SSL newbie

2012-09-17 Thread Joaquin Valdez
This is how I do it. Maybe there is a better way? if (getContext().getRequest().isSecure()) { return new ForwardResolution(VIEW); } else { return new RedirectResolution(https://www; + getContext().getRootCookieDomain() + / +

Re: [Stripes-users] auto

2012-03-09 Thread Joaquin Valdez
? Cheers Remi 2012/3/9 Joaquin Valdez joaquinfval...@gmail.com UI generation? Is there such a thing for Stripes? Joaquin Valdez joaquinfval...@gmail.com -- Virtualization Cloud Management Using Capacity

[Stripes-users] auto

2012-03-08 Thread Joaquin Valdez
UI generation? Is there such a thing for Stripes? Joaquin Valdez joaquinfval...@gmail.com -- Virtualization Cloud Management Using Capacity Planning Cloud computing makes use of virtualization - but cloud computing

[Stripes-users] encrypt

2011-07-11 Thread Joaquin Valdez
Hello! I am wondering how to encrypt an Integer value the same way stripes does with this syntax. Is this possible? @Validate(encrypted = true) private Integer memID; Something like this: String encrypted_value = Someclass.encrypt(memID); Thanks! Joaquin Valdez joaquinfval...@gmail.com

Re: [Stripes-users] encrypt

2011-07-11 Thread Joaquin Valdez
Thank you! On Jul 11, 2011, at 5:15 PM, Freddy Daoud wrote: On Mon, 11 Jul 2011 16:21 -0700, Joaquin Valdez joaquinfval...@gmail.com wrote: Hello! I am wondering how to encrypt an Integer value the same way stripes does with this syntax. Is this possible? @Validate(encrypted = true

[Stripes-users] layout error

2011-05-14 Thread Joaquin Valdez
(Http11Protocol.java:583) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:680) Joaquin Valdez joaquinfval...@gmail.com -- Achieve unprecedented app

[Stripes-users] layout problem...

2011-03-24 Thread Joaquin Valdez
was '/WEB-INF/jsp/common/layout_store.jsp'. The following information was supplied to the render tag: LayoutContext{component names=[body, categories, sidemenu], parameters={title=Login, currentSection=Home}} Thank you! Joaquin Valdez joaquinfval...@gmail.com

Re: [Stripes-users] layout problem...

2011-03-24 Thread Joaquin Valdez
Thank you will try that! On Mar 24, 2011, at 2:55 PM, Janne Jalkanen wrote: I've seen this on occasion. So far I've been able to resolve it simply by clearing Tomcat's work directory, i.e. the compiled JSP files. /Janne On Mar 24, 2011, at 19:36 , Joaquin Valdez wrote: Hello! I

Re: [Stripes-users] Stripes 1.5.6 released

2011-03-14 Thread Joaquin Valdez
to determining the best fit for your organization - today and in the future. http://p.sf.net/sfu/internap-sfd2d___ Stripes-users mailing list Stripes-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/stripes-users Joaquin

[Stripes-users] stripes+yui

2011-02-10 Thread Joaquin Valdez
Hello! Wondering if anyone has any resources on using stripes with Yui? Saw an article by Freddy, but it looks like a broken link. Thanks! Joaquin Valdez joaquinfval...@gmail.com -- The ultimate all-in-one

Re: [Stripes-users] stripes+yui

2011-02-10 Thread Joaquin Valdez
@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/stripes-users Joaquin Valdez joaquinfval...@gmail.com -- The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE: Pinpoint memory and threading errors

Re: [Stripes-users] Multiple dates in the same request parameter

2011-01-23 Thread Joaquin Valdez
://lists.sourceforge.net/lists/listinfo/stripes-users Joaquin Valdez joaquinfval...@gmail.com -- Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! Finally, a world-class log management solution at an even

Re: [Stripes-users] Anyway to Redirect to an external page?

2011-01-21 Thread Joaquin Valdez
! http://p.sf.net/sfu/arcsight-sfd2d ___ Stripes-users mailing list Stripes-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/stripes-users Joaquin Valdez joaquinfval...@gmail.com

[Stripes-users] decode

2011-01-10 Thread Joaquin Valdez
than I care to admit :-) Joaquin Valdez joaquinfval...@gmail.com -- Gaining the trust of online customers is vital for the success of any company that requires sensitive data to be transmitted over the Web. Learn

Re: [Stripes-users] Stripes 1.5.5 released

2011-01-04 Thread Joaquin Valdez
Joaquin Valdez joaquinfval...@gmail.com -- Learn how Oracle Real Application Clusters (RAC) One Node allows customers to consolidate database storage, standardize their database environment, and, should the need arise

[Stripes-users] stripersist

2010-12-29 Thread Joaquin Valdez
Hello! Wondering if its possible to use Stripersist outside of a web application? Meaning it this program would run from a command line. Thanks! Joaquin Valdez joaquinfval...@gmail.com -- Learn how Oracle Real

Re: [Stripes-users] stripersist

2010-12-29 Thread Joaquin Valdez
Stripersist.requestInit(); try { // Use Stripersist in here } finally { Stripersist.requestComplete(); } Aaron On 12/29/2010 01:45 PM, Joaquin Valdez wrote: Hello! Wondering if its possible to use Stripersist outside of a web application? Meaning it this program would run from

Re: [Stripes-users] 1.5.5 Release

2010-12-29 Thread Joaquin Valdez
://lists.sourceforge.net/lists/listinfo/stripes-users Joaquin Valdez joaquinfval...@gmail.com -- Learn how Oracle Real Application Clusters (RAC) One Node allows customers to consolidate database storage, standardize their database

Re: [Stripes-users] job listings....

2010-12-21 Thread Joaquin Valdez
=1266127mostPopular= I've just switched it to be open so that it will be indexed by search engines 99 members so far. There is a job board there. Let me know if you need help posting a job. Morten 2010/12/21 Joaquin Valdez joaquinfval...@gmail.com Hello! Is there an appropriate place/site

[Stripes-users] job listings....

2010-12-20 Thread Joaquin Valdez
Hello! Is there an appropriate place/site to list Stripes Job Opportunities? Joaquin Valdez joaquinfval...@gmail.com -- Lotusphere 2011 Register now for Lotusphere 2011 and learn how to connect the dots, take your

Re: [Stripes-users] Different Types of Messages

2010-11-30 Thread Joaquin Valdez
with the Intel(R) Software Partner Program. Five $500 cash prizes are up for grabs. http://p.sf.net/sfu/intelisp-dev2dev___ Stripes-users mailing list Stripes-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/stripes-users Joaquin Valdez

Re: [Stripes-users] Maven convention

2010-11-10 Thread Joaquin Valdez
growth cycle. Listen Now! http://p.sf.net/sfu/SAP-dev2dev___ Stripes-users mailing list Stripes-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/stripes-users Joaquin Valdez joaquinfval...@gmail.com

Re: [Stripes-users] [JIRA] Created: (STS-779) Release 1.5.4 (also to Maven Repo)]

2010-11-09 Thread Joaquin Valdez
-users Joaquin Valdez joaquinfval...@gmail.com -- The Next 800 Companies to Lead America's Growth: New Video Whitepaper David G. Thomson, author of the best-selling book Blueprint to a Billion shares his insights

Re: [Stripes-users] Source forge description: It's stripey and itdoesn't suck

2010-10-29 Thread Joaquin Valdez
to Ovi Store http://p.sf.net/sfu/nokia-dev2dev___ Stripes-users mailing list Stripes-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/stripes-users Joaquin Valdez joaquinfval...@gmail.com

Re: [Stripes-users] Source forge description: It's stripey and itdoesn't suck

2010-10-29 Thread Joaquin Valdez
___ Stripes-users mailing list Stripes-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/stripes-users Joaquin Valdez joaquinfval...@gmail.com

Re: [Stripes-users] Odd Clean URL Binding??? (1.5.4 Snapshot)

2010-10-28 Thread Joaquin Valdez
___ Stripes-users mailing list Stripes-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/stripes-users Joaquin Valdez joaquinfval...@gmail.com -- Nokia and ATT present the 2010

Re: [Stripes-users] persistence.xml viewing hibernate SQL statements

2010-10-25 Thread Joaquin Valdez
___ Stripes-users mailing list Stripes-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/stripes-users Joaquin Valdez joaquinfval...@gmail.com -- Nokia

Re: [Stripes-users] Streaming layouts (again)

2010-10-05 Thread Joaquin Valdez
. -Ben On Tue, Oct 5, 2010 at 6:41 PM, Joaquin Valdez joaquinfval...@gmail.com wrote: Hello! Would love to help test, but first what are Streaming Layouts? Joaquin On Oct 5, 2010, at 3:11 PM, Stephen Nelson wrote: On 29 Sep 2010, at 20:40, Ben Gunter wrote: I believe I finally

[Stripes-users] database connection

2010-09-22 Thread Joaquin Valdez
Hello! I am wondering what the proper way of handling a database connection pool when it looses connection to the database. My application will run fine for 2 weeks then it will start throwing broken pipe errors. I don't have the exact error but that is what the error says. I use a

Re: [Stripes-users] database connection

2010-09-22 Thread Joaquin Valdez
and sufficient for their purposes... despite the growing list of possibly rarer issues, RFE's, etc... --Nikolaos Joaquin Valdez wrote: Hello! I am wondering what the proper way of handling a database connection pool when it looses connection to the database. My application will run fine for 2

Re: [Stripes-users] database connection

2010-09-22 Thread Joaquin Valdez
Thank you! On Sep 22, 2010, at 2:42 PM, Evan Leonard wrote: I think he meant Load Balancer by LB On Sep 22, 2010, at 3:37 PM, Joaquin Valdez wrote: Thank you Nikolaos for the great information and response! I will get those exceptions and get them to you in a bit. When I

[Stripes-users] displaytable question

2010-09-11 Thread Joaquin Valdez
Hello! I would like to conditionally display a row using the display tag table. Is this possible? How is this done? Thank you very much! Joaquin Valdez joaqu...@mind.net -- Start uncovering the many advantages

Re: [Stripes-users] displaytable question

2010-09-11 Thread Joaquin Valdez
Thank you...do you have an example I can look at? Thanks! On Sep 11, 2010, at 6:29 AM, Mike McNally wrote: As far as I know, the only way to do this is by using a table decorator and putting the logic in there. On Sat, Sep 11, 2010 at 8:10 AM, Joaquin Valdez joaqu...@mind.net wrote

[Stripes-users] can't find model class

2010-09-10 Thread Joaquin Valdez
) at sun.reflect.generics.factory.CoreReflectionFactory.makeNamedType(CoreReflectionFactory.java:95) ... 68 more Seems like something silly, but I can't figure it out. Thanks! Joaquin Valdez joaqu...@mind.net -- Start uncovering the many advantages of virtual

Re: [Stripes-users] can't find model class

2010-09-10 Thread Joaquin Valdez
) at java.lang.Class.forName(Class.java:247) at sun.reflect.generics.factory.CoreReflectionFactory.makeNamedType(CoreReflectionFactory.java:95) ... 68 more Seems like something silly, but I can't figure it out. Thanks! Joaquin Valdez joaqu...@mind.net

Re: [Stripes-users] The New Stripes Website - WAS: Re: Stripes Development and its Future... (this one is long too)

2010-09-02 Thread Joaquin Valdez
Joaquin Valdez joaqu...@mind.net (541) 690-8593 -- This SF.net Dev2Dev email is sponsored by: Show off your parallel programming skills. Enter the Intel(R) Threading Challenge 2010. http://p.sf.net/sfu/intel-thread-sfd

[Stripes-users] website design

2010-09-02 Thread Joaquin Valdez
Hello! I work with a talented guy who designs websites. His portfolio is here: http://hyperlinkstudios.com/portfolio.html Just an idea! Joaquin Valdez joaqu...@mind.net (541) 690-8593 -- This SF.net Dev2Dev

Re: [Stripes-users] website design

2010-09-02 Thread Joaquin Valdez
In exchange for some mention of credit or minor advertising, yes. Joaquin On Sep 2, 2010, at 1:20 PM, Aurangzeb Agha wrote: Joaquin Valdez joaqu...@... writes: Hello! I work with a talented guy who designs websites. His portfolio is here: http://hyperlinkstudios.com

Re: [Stripes-users] stripes/jmesa

2010-08-22 Thread Joaquin Valdez
Challenge http://p.sf.net/sfu/RIM-dev2dev ___ Stripes-users mailing list Stripes-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/stripes-users Joaquin Valdez joaqu...@mind.net (541) 690-8593

Re: [Stripes-users] JSP EL not populated

2010-08-21 Thread Joaquin Valdez
Permissions?!? On Aug 21, 2010, at 7:59 PM, jeffrey.d.k...@wellsfargo.com wrote: I've been developing a few projects with JSPs that are returned via ForwardResolution. They have all worked great (meaning EL was working to populate actionBean values, etc.) for quite some time on all 3

[Stripes-users] stripes/jmesa

2010-08-17 Thread Joaquin Valdez
Hello! Anyone have an example of Stripes and Jmesa to display table data? Thanks! Joaquin Valdez joaqu...@mind.net (541) 690-8593 -- This SF.net email is sponsored by Make an app they can't live without Enter

Re: [Stripes-users] wizards,jquery,ajax

2010-08-05 Thread Joaquin Valdez
mailing list Stripes-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/stripes-users Joaquin Valdez joaqu...@mind.net (541) 690-8593 -- The Palm PDK Hot Apps Program offers developers who use

Re: [Stripes-users] JSR 303 integration and addition to stripes around the web

2010-08-05 Thread Joaquin Valdez
I would like to see it! Joaquin Sent from my iPhone On Aug 5, 2010, at 5:54 PM, d...@ecompanies.com.au wrote: Hi, I'd like to get access to the wiki so I can add my site ecompanies.com.au to the stripes around the web page. If anyone is interested I'll also post my JSR 303