Re: Element filter on list form

2008-11-01 Thread Jacques Le Roux
IMO having it in XSD add something important : documentation. It allows also to generate directly in XML, or whatnot, if we want/need If nobody see a problem with that I will commit Nicolas Patch (reviewed and tested : works well) https://issues.apache.org/jira/browse/OFBIZ-2032 Note that

Re: Element filter on list form

2008-11-01 Thread Scott Gray
Hi Jacques I realise now that using set wouldn't solve the problem because there is nowhere to set the row style. I still don't like the name filter though, I think something like alt-row-style would be more intuitive and would follow alt-target which performs a similar function. Regards Scott

Re: Element filter on list form

2008-11-01 Thread David E Jones
I agree, filter doesn't make any sense, or at least I don't understand how the word filter has anything to do with the functionality described. The qualification for a good name goes beyond that too, it can't just have something to do with the functionality, it should describe the

Re: Element filter on list form

2008-11-01 Thread mnicolas
+1 I agree also, my choise filter is stupid, if the element name is ok, I correct the patch. But can't do this now because I take the plane in few hours for the apache conf. I correct it when I will present in new orleans ;) Nicolas David E Jones a écrit : I agree, filter doesn't make

Re: Element filter on list form

2008-11-01 Thread David E Jones
Sounds good Nicolas. Looking forward to seeing you in New Orleans. -David On Nov 1, 2008, at 6:26 PM, mnicolas wrote: +1 I agree also, my choise filter is stupid, if the element name is ok, I correct the patch. But can't do this now because I take the plane in few hours for the apache

Re: Element filter on list form

2008-10-31 Thread Malin Nicolas
Hi Scott, Yes it's possible to extend the ModelForm to look if exist a styleName in context. I don't know if the better solution is to use the set element and create the conditionnal with the result style in value attribute or dedicate element with separate conditionnal and style. An

Element filter on list form

2008-10-30 Thread Malin Nicolas
Hi, I have an other enchancement for the Screen Engine. When you have a list with many information, many user like to have some line with different color to look quickly important information. example : set line in blue when status order is created or line in red if order amount is greater than

Re: Element filter on list form

2008-10-30 Thread Jacques Le Roux
I can't see any problems with such an enhancement. A Jira seems appropriate. Jacques From: Malin Nicolas [EMAIL PROTECTED] Hi, I have an other enchancement for the Screen Engine. When you have a list with many information, many user like to have some line with different color to look quickly

Re: Element filter on list form

2008-10-30 Thread Malin Nicolas
Ok Jacques, I create Jira : https://issues.apache.org/jira/browse/OFBIZ-2032 and associate the patch with an example to test it Nicolas Jacques Le Roux a écrit : I can't see any problems with such an enhancement. A Jira seems appropriate. Jacques From: Malin Nicolas [EMAIL PROTECTED] Hi,

Re: Element filter on list form

2008-10-30 Thread Jacques Le Roux
Thanks for the example Nicolas, much appreciated (makes things easier for commiters to test :o) Jacques From: Malin Nicolas [EMAIL PROTECTED] Ok Jacques, I create Jira : https://issues.apache.org/jira/browse/OFBIZ-2032 and associate the patch with an example to test it Nicolas Jacques Le

Element filter on list form

2008-10-30 Thread Nicolas Malin
Hi, I have an other enchancement for the Screen Engine. When you have a list with many information, many user like to have some line with different color to look quickly important information. example : set line in blue when status order is created or line in red if order amount is greater than

Re: Element filter on list form

2008-10-30 Thread Scott Gray
Can't the same thing be achieved by doing something like this: row-actions set field=styleName value=${bsh:productHeight == null || productHeight == 0 ? 'warningRow' : 'normalRow'}/ /row-actions Regards Scott 2008/10/30 Malin Nicolas [EMAIL PROTECTED]: Hi, I have