Category Tree Display Overlaps the box area in Guvnor in Internet Explorer
2008-10-01 07:29:59 GMT
Hi All,
I am not sure, if this has been raised before(could not find an existing JIRA) for it.
The display of categories in IE 7 seems to overlap the box area(See attached).
This works correctly with Safari and FireFox. Sounds like a problem with Z-Indexes in IE.
Cheers,
Vikrant
|
MASTEK LTD. Mastek is in NASSCOM's 'India Top 20' Software Service Exporters List. In the US, we're called MAJESCOMASTEK ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Opinions expressed in this e-mail are those of the individual and not that of Mastek Limited, unless specifically indicated to that effect. Mastek Limited does not accept any responsibility or liability for it. This e-mail and attachments (if any) transmitted with it are confidential and/or privileged and solely for the use of the intended person or entity to which it is addressed. Any review, re-transmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. This e-mail and its attachments have been scanned for the presence of computer viruses. It is the responsibility of the recipient to run the virus check on e-mails and attachments before opening them. If you have received this e-mail in error, kindly delete this e-mail from desktop and server. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
_______________________________________________ rules-users mailing list rules-users <at> lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users
>>
>> How do I use memberOf operator when working with collections? Depending on a
>> day of week, I want to check if a day is a working day or weekend day.
>>
>> I tried this:
>>
>> package com.sample
>> dialect "mvel"
>> import com.sample.ThermostatTimeData;
>> import com.sample.Thermostat.WorkDay;
>> import com.sample.Thermostat.WorkDays;
>>
>>
>> rule "Rule 1"
>>
>> when
>> $wd : WorkDays()
>> $ttd : ThermostatTimeData( day memberOf $wd.daylist )
>> //$ttd: ThermostatTimeData ( day == "Monday" || day == "Tuesday" ||
>> day == "Wednesday" || day == "Thursday" || day == "Friday" )
>>
>> then
>> insert( new WorkDay() );
>> System.out.println("inserting new workday");
>> end
>>
>>
>> with this in my Thermostat class:
>>
>> public static class WorkDays {
>> private String[] dl = {"Monday", "Tuesday", "Wednesday", "Thursday",
>> "Friday"};
>>
>> public WorkDays() {
>> }
>>
>> public String[] getDaylist() {
>> return this.dl;
>> }
>> }
>>
>>
>> Now the above rule works fine when I select days using the regular fact
>> field selection in Drools:
>>
>> $ttd: ThermostatTimeData ( day == "Monday" || day == "Tuesday" || day ==
>> "Wednesday" || day == "Thursday" || day == "Friday"
>>
>> However, when I try to access WorkDays.dl or WorkDays.daylist(), the rule
>> doesn't fire (the program output is empty).
>>
>> Regards,
>> MK
>>
>> _______________________________________________
>> rules-users mailing list
>> rules-users <at> lists.jboss.org
>>
RSS Feed