• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Announcement

Collapse
No announcement yet.

[SOLVED] parent.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • [SOLVED] parent.

    We are using parent.tabPanelMain.find('field') in a routine. This worked fine in the old Valence 2, but does not work in Valence 3 even using the old ExtJS 3.4. Is there something I can use as a replacement?

  • #2
    The portal in 3 is written in Ext 4, thus you can use:

    Code:
    parent.tabPanelMain.down('[yourfield=somevalue]');

    Comment


    • #3
      Thanks...that worked!

      Comment

      Working...
      X