Re: [Wicket-user] Table with TextFields example (Dissapointed in Wicket)

2007-03-19 Thread Udora

Hi Igor,

First of all, I would want to say that I've solved the problem myself and
having now a great table component with all what I needed.
And I also want to say that I don't think I owe you as a developer anything
for using Wicket. Of course being an open source developer, you have the
luxury to tell your clients that. In my world, I try to be helpful to my
clients even with the insults that occasionally come with their being in bad
mood. In all those circumstances I strife to be client friendly, even when
I've had the worst sleep ever, or my girlfriend denied me sex the previous
night.
Because of the my impression so far, I've decided to download the Wicket
source and look for answers to my future questions there. Probably I'd be
less productive that way but unfortunately I don't clearly see any other
alternative.
Have a nice day, even when you couldn't get sufficient caffeine dose for the
day.

On 3/18/07, Igor Vaynberg [EMAIL PROTECTED] wrote:


so not having the _personal_ time to answer every single question that is
on this list makes us arrogant? that is great!

do you think i would rather spend my time pumping you for information or
spend that time in a park playing with my daughter? maybe if you wouldve
spent more then two minutes of your time writing up an appropriate question
with code examples or a quickstart project instead of something so vague it
is useless someone wouldve bothered to reply.

remember: just because you are using wicket it doesnt mean the developers
owe you anything. look at the threads on this list, quiet a lot of them are
answered by other users. why do you think none of them answered yours?

and unlike eelco i do hope this comes across as arrogant because your
email was very disrespectful.

-igor


On 3/18/07, Udora  [EMAIL PROTECTED] wrote:

 Hi all,

 I was attracted to Wicket because of its finesse and all the stories
 around praising how helpful their developers and user community are and the
 quick response one receives when you post a question. I must say, my
 experience has been bad so far. I posed the question below 2 days ago and
 still no response. I've known frameworks whose developers were also
 initially very helpful but became arrogant when they got the popularity and
 success. I hope Wicket is not getting on that slippery road.



 On 3/16/07, Udora [EMAIL PROTECTED]  wrote:
 
  Hi,
 
  I'm implementing a form with a table component as one of its
  component. The table has some textfields columns. The problem is that upon
  submit my model is not updated to reflect the values filled in the
  textfields. Can someone point me to an example where this sort of thing is
  implemented? I've already looked in Wicket examples but couldn't find
  anything.
 
  Thanks,
 
 
  --
  Wicket is Wicked




 --
 Wicket is Wicked

 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share
 your
 opinions on IT  business topics through brief surveys-and earn cash

 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user





--
Wicket is Wicked
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Table with TextFields example (Dissapointed in Wicket)

2007-03-18 Thread Udora

Hi all,

I was attracted to Wicket because of its finesse and all the stories around
praising how helpful their developers and user community are and the quick
response one receives when you post a question. I must say, my experience
has been bad so far. I posed the question below 2 days ago and still no
response. I've known frameworks whose developers were also initially very
helpful but became arrogant when they got the popularity and success. I hope
Wicket is not getting on that slippery road.



On 3/16/07, Udora [EMAIL PROTECTED] wrote:


Hi,

I'm implementing a form with a table component as one of its component.
The table has some textfields columns. The problem is that upon submit my
model is not updated to reflect the values filled in the textfields. Can
someone point me to an example where this sort of thing is implemented? I've
already looked in Wicket examples but couldn't find anything.

Thanks,


--
Wicket is Wicked





--
Wicket is Wicked
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] config file on classpath

2007-03-13 Thread Udora

Hi all,

I have the following spring configuration in my web.xml:

context-param
   param-namecontextConfigLocation/param-name
   param-valueclasspath*:applicationContext-service.xml/param-value
/context-param

The applicationContext-service.xml references a hibernate-cfg.xml file.
However on container startup I get the error:

Invocation of init method failed; nested exception is
java.io.FileNotFoundException: ServletContext resource [/hibernate.cfg.xml]
cannot be resolved to URL because it does not exist

The hibernate.cfg.xml exists in the same location as
applicationContext-service.xml on the classpath.

Thanks in advance
--
Wicket is Wicked
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] config file on classpath

2007-03-13 Thread Udora

Ok, again I solved my own problem.
I inserted a classpath:hibernate-cfg.xml and it now works in the
applicationContext.xml file.

Regards



On 3/13/07, Udora [EMAIL PROTECTED] wrote:


Hi all,

I have the following spring configuration in my web.xml:

context-param
param-namecontextConfigLocation/param-name
param-valueclasspath*:applicationContext-service.xml/param-value
 /context-param

The applicationContext-service.xml references a hibernate-cfg.xml file.
However on container startup I get the error:

Invocation of init method failed; nested exception is
java.io.FileNotFoundException: ServletContext resource
[/hibernate.cfg.xml] cannot be resolved to URL because it does not exist

The hibernate.cfg.xml exists in the same location as
applicationContext-service.xml on the classpath.

Thanks in advance
--
Wicket is Wicked





--
Wicket is Wicked
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] The type org.slf4j.Logger cannot be resolved

2007-03-06 Thread Udora

Hi,

I'm setting up my environment to start Wicket development. I'm using
Wicket-2.0-Snapshot. I'm getting the error: The type org.slf4j.Logger cannot
be resolved.
Is there any library dependency I'm missing on my classpath? I have
commons-logging and log4j on my path.

--
Wicket is Wicked
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] The type org.slf4j.Logger cannot be resolved

2007-03-06 Thread Udora

Ok, I've found the dependent library and everything is fine now.

On 3/6/07, Udora [EMAIL PROTECTED] wrote:


Hi,

I'm setting up my environment to start Wicket development. I'm using
Wicket-2.0-Snapshot. I'm getting the error: The type org.slf4j.Loggercannot be 
resolved.
Is there any library dependency I'm missing on my classpath? I have
commons-logging and log4j on my path.

--
Wicket is Wicked





--
Wicket is Wicked
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user