[Seaside] Re: list with checkboxes

Harjinder harji.gill at gmail.com
Tue Aug 3 15:36:56 UTC 2010


harji gill <harji.gill <at> gmail.com> writes:

> 
> Hi All,Is it possible to create list with check boxes. so that I just select
the check boxes for multi select instead of pressing control button for multi
select.Thanks Harjinder
> 
> _______________________________________________
> seaside mailing list
> seaside <at> lists.squeakfoundation.org
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> 

I think I found the way:

html div style:'overflow:auto;width:50em;height:10em;'; with: [
		html table:[
		html tableRow:[
		html tableData:'A'. html tableData:[html checkbox]].
		html tableRow:[	
		html tableData:'B'. html tableData:[html checkbox]].
		html tableRow:[	
		html tableData:'C'. html tableData:[html checkbox]].
		html tableRow:[
		html tableData:'D'. html tableData:[html checkbox]].
		html tableRow:[
		html tableData:'E'. html tableData:[html checkbox]].
		html tableRow:[
		html tableData:'F'. html tableData:[html checkbox]].
		html tableRow:[
		html tableData:'G'. html tableData:[html checkbox]].
								 ]
							]

Please let me know if you have any other solution

Thanks 
Harjinde 



More information about the seaside mailing list