History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEA-18042
Type: Bug Bug
Status: Open Open
Assignee: Maxim Mossienko
Reporter: Keith Thompson
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
IDEA: Feedback

inspection in mxml file incorrectly flagging mx: parts inside an FormItem extended class

Created: 07 May 08 17:38   Updated: Tuesday 16:29
Component/s: Flex Support

Environment: xp

Build: 7,821
Severity: High


 Description  « Hide
if I create a simple class (see end of this) custom that extends FormItem, mxlm inspection is saying the mx:* elements are invalid

eg.

<custom:DynamicFormItem id="lblIdentIdType" label="Identification Type:" required="true" visible="{grpUSCitizen.selection == rdoCitizenNo}">
<mx:ComboBox id="cboIdentType" dataProvider="{identType}" toolTip="Required Field" />
<mx:Spacer height="0"/>

package custom
{
import mx.containers.FormItem;

public class DynamicFormItem extends FormItem {

/**

  • Handles dynamic height of this component.
    */
    public override function set visible(visible:Boolean):void { super.visible = visible; if(!visible) height = 0; else height = undefined; }
    }
    }


 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.