[Lift] Re: how to add object into session scope in lift

2009-04-29 Thread pravin karne
hi, i want some explanation for following code object sessionObj extends SessionVar[HashMap[String, Int]]( new HashMap[String, Int] { override def default(key: String): Int = 0 } ) 1. how object extends class in scala.? 2. are we going to create object of

[Lift] Re: how to add object into session scope in lift

2009-04-29 Thread pravin karne
what is the is+ method sessionObj.is+ (foo - 1) how it differ from sessionObj.is(foo - 1) On Tue, Apr 28, 2009 at 8:33 PM, David Pollak feeder.of.the.be...@gmail.com wrote: On Tue, Apr 28, 2009 at 5:30 AM, pravin pravinka...@gmail.com wrote: Hi guys, I want to add objects into

[Lift] Re: How to create dynamic table in response

2009-04-21 Thread pravin karne
i have already done with this, But this is static page.no of rows in display table is fixed. but suppose i have collection of data with variable size , and i want to display that data in table (e.g list of employee with details). So my concern is how i iterate over collection dynamically in

[Lift] Re: How to create dynamic table in response

2009-04-21 Thread pravin karne
I got that example also solution for my problem Thanks Marius for u r valuable pointer one more question ,how can i run these sites/ example applications. I have created the jar file from given pom.xml. but i am not able to run that jar file. could u please tell that? Thanks On Tue, Apr 21,