Question on drill-in navigation

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default Question on drill-in navigation

    Hi,
    I have a ViewStack in my main mxml. One of its child containers (a Search
    'page') has a DataGrid. When I click a record in the DataGrid, I want to
    display another container (a CRUD 'page' for the selected record). How can I
    use the click event to display the CRUD page in place of the Search page? I
    tried addChild() on the ViewStack, but I didn't find a way to tell the
    ViewStack to select this new child (the CRUD page). It just gets added to the
    LinkBar on top of the ViewStack ... What is the standard way to do this type of
    drill-in navigation?
    Thanks!
    Miguel

    java guitar Guest

  2. Similar Questions and Discussions

    1. Web Navigation Bar and URL Question
      New to web programming. I have some very basic questions regarding menu bars. What's the best way to implement menu bar navigation? I looked at...
    2. Question re Recordset Navigation
      Does anyone know whether there is a Recordset Navigation extention that allows you to display all of the pages or records at once with a "view all...
    3. Navigation Question
      Hello, For my website I use some PHP code for navigation. Therefore I use a directory structure which contains some navigation files the visitor...
    4. [PHP] navigation question
      On Mon, 15 Sep 2003 08:41:31 -0500, Andre created an award-winning crop circle <20030915134110.25572.qmail@pb1.pair.com>, which, when translated...
    5. Navigation Bar Question
      Hello The site isn't posted yet but here is the javascript: <script language="JavaScript" type="text/JavaScript"> <!-- function...
  3. #2

    Default Re: Question on drill-in navigation

    myViewStack.selectedIndex = newIndex
    or
    myViewStack.selectedChild = the same child that was passed to addChild()
    atta707 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139