I have a custom dialog with a button and an input on it. On the click event of the button I want to trigger the OnChange function of the input. I don't know how to get the sibling UIElement of the current one.

Here is an example of my code:

{
    id : 'txtUrl',
    type : 'text',
    label : 'My input',
    onChange : function() {
      alert('content changed')
    }
}
{
    type : 'button',
    align : 'center',
    label : 'My Button',
    onClick : function() {
      // execute the input.onChange()
      ?????
    }
}
link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

I just find out (another developer showed to me), and here go answer:

{
    id : 'info',
    label : 'my container',
    elements :
    [
    {
        id : 'txtUrl',
        type : 'text',
        label : 'My input',
        onChange : function() {
           alert('content changed')
        }
    }
    {
        type : 'button',
        align : 'center',
        label : 'My Button',
        onClick : function() {
           this.getDialog().getContentElement("info", "txtUrl").onChange();
        }
    }
    ]
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.