Complex View navigation

Hi Guys
I've got a setup as follows:
.........................mainview
...................... _____|______
...................... |...................|
....................view1.............view2
......... ________|________
.........|.............|.............|
defaultViewS viewS2 viewS3
So Say I want to change from view2 to view1 all I would have to do is:
ActionScript Code:
<s:Button label="Change to default view state"
            click="currentState='view1';"/>
and it would open view1 with the default view (defaultViewS)
So the question is: How would I specify that instead of view opening to it's default state, how would I open it to it's non-default state(ie viewS2 or viewS3)
Thanks

Hi
Thanks for your help! but it's not quite what I need. I'm using quite a complex method to navigate about my app and I attempted to simplify it to make it easier to explain.
I'll explain my basic requirement and then I'll post my project compostion so you can see what I'm talking about.
Basically I have a tabbar which contains 6 viewstates. Those 6 viewstates and not simple views but themselves contain multiple views.
So if you click on tab button no 2 it will open tabButtonTwoView. tabButtonTwoView 3 views inside itself, when tabButtonTwoView is opened it opens to the default view. If you navigate away from tabButtonTwoView and return to it then you will see whichever view you were last looking at(it not neccesarily the default view)
So basically what I would like is that say you are on tabButtonOneView and you have a button there, then clicking that button would open tabButtonTwoView and then the view that has been specified, not the view that it opens by default or the view that you had open last.
Ok so that's the basic explanation. now I'll give you a breakdown of my project since it's a little bit more complex than that. I''ve also attached the project for you to have a look at.
you can download it here ( -- code removed -- )
So basically I'm using a MVCS methodology here along with robotlegs.
here's the basic way the nav works.
my main view contains these components:
<view:HeaderView id="header"
width="100%"
/>
<view:MainTabBar id="someTabBar" />
<view:ContentView id="content"/>
<view:FooterView id="footer"
width="100%"
/>
Tab Bar controls the main navigation of content using a mediator class:
package za.co.vw.projectname.view
import mx.collections.ArrayCollection;
import mx.events.StateChangeEvent;
import org.robotlegs.mvcs.Mediator;
import spark.events.IndexChangeEvent;
import za.co.vw.projectname.event.NavigationEvent;
public class MainTabBarMediator extends Mediator
public function get view():MainTabBar
return viewComponent as MainTabBar;
override public function onRegister():void
eventMap.mapListener(view, IndexChangeEvent.CHANGE, onSelectedIndexChange);
eventMap.mapListener(eventDispatcher, StateChangeEvent.CURRENT_STATE_CHANGE, onStateChange);
view.dataProvider = new ArrayCollection([{label:'About', name:'about'}, {label:'Apply', name:'apply'}, {label:'Date', name:'date'}, {label:'Watch', name:'watch'}, {label:'GTI', name:'gti'}]);
private function onSelectedIndexChange(event:IndexChangeEvent):void
if(!view.selectedItem)
return;
var navTo:String;
trace(view)
trace(view.selectedItem)
trace(view.selectedItem.label)
switch(view.selectedItem.label)
case "About":
navTo = NavigationEvent.ABOUT;
break;
case "Apply":
navTo = NavigationEvent.APPLY;
break;
case "Date":
navTo = NavigationEvent.DATE;
break;
case "Watch":
navTo = NavigationEvent.WATCH;
break;
case "GTI":
navTo = NavigationEvent.GTI;
break;
case "Home":
navTo = NavigationEvent.HOME;
break;
dispatch(new NavigationEvent(NavigationEvent.VIEW_CHANGE, navTo));
private function onStateChange(event:StateChangeEvent):void
var s:String = event.newState.slice(0, event.newState.indexOf("State"));
var tabItem:Object = getTabItemByName(s);
if(s == "home")
trace("going home");
view.selectedIndex = -1;
} else if(view.dataProvider.getItemIndex(tabItem) != view.selectedIndex)
trace("not going home, changing to "+s);
view.selectedItem = tabItem;
private function getTabItemByName(name:String):Object
for each(var obj:Object in view.dataProvider)
if(obj.name == name)
return obj;
return null;
which talks to and event class called NavigationEvent:
package za.co.vw.projectname.event
import flash.events.Event;
public class NavigationEvent extends Event
public static const VIEW_CHANGE:String = "viewChange";
public static const ABOUT:String = "about";
public static const APPLY:String = "apply";
public static const DATE:String = "date";
public static const WATCH:String = "watch";
public static const GTI:String = "gti";
public static const HOME:String = "home";
public var targetViewId:String;
public function NavigationEvent(type:String, targetViewId:String="", bubbles:Boolean=false, cancelable:Boolean=false)
super(type, bubbles, cancelable);
this.targetViewId = targetViewId;
most of my other components have mediators which dispatch navigation events, all of this being registered and and executed by the robotlegs frame works. The connections to the classes and their mediators are made in the ViewPrepCommand class:
package za.co.vw.projectname.controller
import org.robotlegs.mvcs.Command;
import spark.components.TabBar;
import za.co.vw.projectname.view.AboutView;
import za.co.vw.projectname.view.AboutViewMediator;
import za.co.vw.projectname.view.ContentView;
import za.co.vw.projectname.view.ContentViewMediator;
import za.co.vw.projectname.view.DateView;
import za.co.vw.projectname.view.DateViewMediator;
import za.co.vw.projectname.view.HeaderView;
import za.co.vw.projectname.view.HeaderViewMediator;
import za.co.vw.projectname.view.MainTabBar;
import za.co.vw.projectname.view.MainTabBarMediator;
import za.co.vw.projectname.view.MainView;
import za.co.vw.projectname.view.MainViewMediator;
public class ViewPrepCommand extends Command
override public function execute():void
mediatorMap.mapView(HeaderView, HeaderViewMediator);
mediatorMap.mapView(ContentView, ContentViewMediator);
mediatorMap.mapView(MainView, MainViewMediator);
mediatorMap.mapView(DateView, DateViewMediator);
mediatorMap.mapView(AboutView, AboutViewMediator);
mediatorMap.mapView(MainTabBar, MainTabBarMediator);

Similar Messages

  • Updates to a complex view

    SQL Developer version 3.0.04 on XP Pro
    We are able to use the data grid to update the values of views that are inherently updatable, no problem.
    We have a complex view with an associated instead-of-update trigger. We are able to update this complex view using an UPDATE statement, no problem.
    We would like to be able to update the complex view using the data grid (just in case I am mixing up the terminology, by "data grid" I mean the interface you get when you select the view from the navigation pane and then click the "Data" tab), but the fields are read only.
    Is there a configuration option that we can use to enable this? Or, some sort of workaround? Or, are we simply not able to update complex views using the data grid?
    Thanks!
    -Tom

    i think u need to change ur application structurei don't think so. Create an INSTEAD-OF-trigger on your view and manage the splitting there. In forms, you wil have to set the property "Primary Key" for the pk-item's to "Yes" and eventually you have to create an ON-LOCK-trigger

  • How to insert new record or update existing record using a complex view?

    Currently I created this screen, there is no problems on display data, only on the update funtionality (it means insert / update / delete on the table for which the view is based on).
    I have a table and a complex view in order to display the information from the table in a tabellar form (i.e up to 70 record in same "record" in the form, one for each item)
    The view is like this
    select a.f1, a.f2, get_value(a.pk1,1) a1, get_value(a.pk1,2) a2, get_value(a.pk1,3) a3............
    from my_table a
    where a.proj_id = user
    and I want to permit the update of the field a1, a2, a3 in a multiposition canvas (tabellar).
    I created an INSTEAD-OF trigger.
    But it not work only in the form. I receive the error FRM-40654 when I try to change the existing value in the running form based on that view.
    The view is woking and updatable using sql-plus.
    If I query
    select * from ALL_UPDATABLE_COLUMNS where table_name = 'SPV_BOQ_BOM_POS_ACTIVITIES';
    in which 'SPV_BOQ_BOM_POS_ACTIVITIES' is the name of my view.
    The question is: why if the view is updatable using SQL*Plus, is not updatable using Oracle Form 10gR2 ?
    Someone could help me asap?
    Thanks

    I removed on the datablock three items that are not showed, one of this is the Sysdate of update on the table for which the view is based.
    I removed also the on-lock trigger and the update from the form is NOT working fine.
    But for now I can still mantaing the ON-LOCK trigger.
    Is not a priority to remove this trigger.
    I still have the problem when the field is null, it mean that in the table SP_BOQ_BOM_POS_ACTIVITIES the record not exist.
    I try now to explayn better.
    SPV_BOQ_BOM_POS_ACTIVITIES is the name of the view.
    SP_BOQ_BOM_POS_ACTIVITIES is the name of the table.
    This are the desc
    desc SPV_BOQ_BOM_POS_ACTIVITIES
    Describing SPV_BOQ_BOM_POS_ACTIVITIES....
    NAME Null? Type
    BOQ_HEADER_ID NOT NULL NUMBER(12,0)
    BB_ID NOT NULL NUMBER(12,0)
    BOQ_ID NOT NULL NUMBER(12,0)
    PROJ_ID NOT NULL VARCHAR2(10)
    ACT_GROUP_CODE VARCHAR2(30)
    TOTAL_QTY NUMBER
    ACT_CODE_1 VARCHAR2(4000)
    QTY_1 NUMBER
    ACT_CODE_2 VARCHAR2(4000)
    QTY_2 NUMBER
    ACT_CODE_3 VARCHAR2(4000)
    QTY_3 NUMBER
    ACT_CODE_4 VARCHAR2(4000)
    QTY_4 NUMBER
    ACT_CODE_5 VARCHAR2(4000)
    QTY_5 NUMBER
    ACT_CODE_6 VARCHAR2(4000)
    QTY_6 NUMBER
    USR_ID NOT NULL VARCHAR2(10)
    LMOD NOT NULL DATE
    INT_REV NOT NULL NUMBER(6,0)
    The field QTY_1, QTY_2.... QTY_6 are calculated with a customer stored function from the table SP_BOQ_BOM_POS_ACTIVITIES.
    Also the field ACT_CODE_1, ACT_CODE_2, .... ACT_CODE_6 are calculated with a customer stored function from the table SP_BOQ_BOM_POS_ACTIVITIES.
    desc SP_BOQ_BOM_POS_ACTIVITIES
    Describing SP_BOQ_BOM_POS_ACTIVITIES....
    NAME Null? Type
    BBPA_ID NOT NULL NUMBER(12,0)
    BOQ_HEADER_ID NOT NULL NUMBER(12,0)
    BB_ID NOT NULL NUMBER(12,0)
    BOQ_ID NOT NULL NUMBER(12,0)
    PROJ_ID NOT NULL VARCHAR2(10)
    ACT_GROUP_CODE NOT NULL VARCHAR2(30)
    ACT_CODE NOT NULL VARCHAR2(30)
    QTY NUMBER(12,0)
    FLG_MANUAL_CHANGE VARCHAR2(1)
    USR_ID NOT NULL VARCHAR2(10)
    LMOD NOT NULL DATE
    INT_REV NOT NULL NUMBER(6,0)
    If I use SQL Navigator this insert working fine
    insert into SPV_BOQ_BOM_POS_ACTIVITIES
    (BOQ_HEADER_ID, BB_ID, BOQ_ID, PROJ_ID, ACT_GROUP_CODE, ACT_CODE_1, QTY_1)
    values (5050, 5015, 30486, 'B39368', 'TEST', '0101010101010101', 1709)
    1 row(s) inserted
    Instead using the Screen, at runtime, I receive the message:
    FRM-40400 Transation Complete: 1 records applied and saved
    but nothing is saved in the table SP_BOQ_BOM_POS_ACTIVITIES, and the view SPV_BOQ_BOM_POS_ACTIVITIES contain the calculated QTY_1 for the 'key', with null value.
    Moreover If in the field QTY_1 (NUMBER) I put a character, instead a Number, just to see if the Screen attempts or not an UPDATE or AN INSERT, the message is FRM-40509: Oracle Error. UNABLE TO UPDATE RECORD. Why happen an Update and not an INSERT using the Screen?
    In effect, the trial using SQL navigator of the following statement
    insert into SPV_BOQ_BOM_POS_ACTIVITIES
    (BOQ_HEADER_ID, BB_ID, BOQ_ID, PROJ_ID, ACT_GROUP_CODE, ACT_CODE_1, QTY_1)
    values (5050, 5015, 30486, 'B39368', 'TEST', '0101010101010101', 'r');
    I got Invalid Number and it's ok as answer from the database.
    Edited by: fmariani on 30-apr-2009 1.51

  • How to update or delete records in a Complex View in Forms?

    Hi,
    I have a requirement to create a Form by using Complex View. Insertion is possible but updation and deletion is not working properly . I got FRM-40501 Error. I need How to update or delete records in a Complex View in Forms?
    Thanks & Regards,
    Hari Babu

    Depending on how complex your view is, forms is not able to determine how to appropiately lock a record, when you try to update or delete a record.
    One approach to using complex views in forms:
    1. Set the Key-mode of the block to "Non-Updateable"
    2. Mark the column which can be used to build the WHERE-condition to uniquely identify a record with "Primary Key" = "Yes"
    3. For doing INSERT, UPDATE and DELETE, create an INSTEAD-OF-trigger on the view.
    4. Create your own ON-LOCK-trigger in forms which does the locking of the records to update.

  • Complex view in forms 6i

    i have create a complex view
    and i want to use this view in oracle form developer 6i
    when i try to insert a new record in the view i have this error message frm-40602
    in the database i have wire the instead of trigger
    so how can i use the form to insert anew record in this view

    not all columns can be updated by a view. Those columns, which are not allowed have to be set to "Query Only". try this property

  • Why we cannot perform DML operations against complex views directly.

    hi
    can any tell me why we cannot perform DML operations against complex views directly.

    Hi,
    It is not easy to perform DML operations on complex views which involve more than one table as said by vissu. The reason being you may not know which columns to be updated/inserted/deleted on the base tables of the views. If it is a simple view containing a single table it is as simple as performing actions on the table.
    For further details visit this
    http://www.orafaq.com/wiki/View
    cheers
    VT

  • View Navigation (Back and Next)

    Hi Experts,
    Are there any alternatives to using plugs for view navigation in Web Dynpro?
    We have an application which consist of a number of views, each with a 'back' and 'next' button that loads another view. Problem is - depending on choices made on the views, the next and back buttons need to navigate to different views. This means that we have to create separate plugs and links for each possible destination. Even worse, we have to keep track of which view was loaded before the current view, as the back navigation differs.
    If I can maybe illustrate our problem with this example:
    View1:
    InPlug1(Back from View3 after navigating to it from here)
    OutPlug1 (Next button with option A)
    OutPlug2 (Next button with option B)
    View2:
    InPlug1 (Next from View1 with option A)
    InPlug2 (Back from View3 after navigating to it from here)
    Outplug1 (Next button)
    View3:
    InPlug1 (Next from View1 with option B)
    InPlug2 (Next from View2)
    Outplug1 (Back after navigating from View1)
    Outplug2 (Back after navigating from View2)
    For this simple setup we need 10 plugs and we need to keep track of which View navigated to View3. Is there a simpler way or maybe something we could do different somehow?

    Hi,
    Please go through this tutorial.
    It explains how you can pass parameter inside the fire plug and how you can navigate to a view of your choice from a list of views.
    It does not directly address your problem.But then this is possible solution with some intelligent coding.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/webdynpro?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#4">Navigation using Interface view</a>

  • Complex Views

    I'm trying to figure out how to build a complex view. Right now I have a textfield and button that are tied to a search function. I have a SearchController class that is tied to a SearchView.xib. The textfield and search button are for specific keyword searching
    I want to add a table view to this search view for canned searches by category. Should I create another controller just for this sub-part to the view or should I just implement the methods for a UITableViewController within the Search Controller?

    I understand that a UITableViewController is just a dummy interface. That's not exactly what I'm getting at...
    I do have my controllers separated into a SearchController and a ResultsController with different xib view files associated with each of them. What I'm struggling with is trying to add a UITableView to the search view which is owned by SearchController which is a UIViewController.
    It seems like it would be a bad idea to have two controllers, one referencing the larger part of a view and a subpart of that view being controlled by a second controller, so I'm trying to add a UITableView as a member variable of the SearchController and making the SearchController a UITableViewDelegate. I just want to make sure I'm approaching this problem with the best practices. Apple has provided some great examples about Table Views themselves, and other views, but there is no example out there that has multiple types of views in one given view.

  • Complex views can be updatable?

    I am having one complex view i need to update at run time for that view dipendent table. how can It possible

    from the free, online SQLmanual, the CREATE VIEW chapter, Notes on Creating Updatable Views
    An updatable view is one you can use to insert, update, or delete base table rows. You can create a view to be inherently updatable, or you can create an INSTEAD OF trigger on any view to make it updatable.
    To learn whether and in what ways the columns of an inherently updatable view can be modified, query the USER_UPDATABLE_COLUMNS data dictionary view. (The information displayed by this view is meaningful only for inherently updatable views.)
    If you want the view to be inherently updatable, it must not contain any of the following constructs:
    A set operator
    A DISTINCT operator
    An aggregate or analytic function
    A GROUP BY, ORDER BY, CONNECT BY, or START WITH clause
    A collection expression in a SELECT list
    A subquery in a SELECT list
    Joins (with some exceptions as described in the paragraphs that follow).
    In addition, if an inherently updatable view contains pseudocolumns or expressions, you cannot update base table rows with an UPDATE statement that refers to any of these pseudocolumns or expressions.
    If you want a join view to be updatable, all of the following conditions must be true:
    The DML statement must affect only one table underlying the join.
    For an INSERT statement, the view must not be created WITH CHECK OPTION, and all columns into which values are inserted must come from a key-preserved table. A key-preserved table in one for which every primary key or unique key value in the base table is also unique in the join view.
    For an UPDATE statement, all columns updated must be extracted from a key-preserved table. If the view was created WITH CHECK OPTION, join columns and columns taken from tables that are referenced more than once in the view must be shielded from UPDATE.
    For a DELETE statement, if the join results in more than one key-preserved table, then Oracle deletes from the first table named in the FROM clause, whether or not the view was created WITH CHECK OPTION.

  • MobileApplication / View / Navigator issue

    I've ran into an issue I can't seem to resolve. I have a main view with a Label and a Timer. The timer executes once a second and updates the label with the current time. All is great.
    But,
    If I hit a button to go to another view via navigator.pushview(SecondView) I can still see the timer is still running via trace/console.
    On the second view I press a button and call navigator.popView to go back to the previous page.
    Now, the timer is still running, I can still see the timer event being called but now the Label is no longer being updated with the time, it simply shows the default initalized value.
    Can someone please shed some light on this. I really need to be able to return to the first view and have it operating just like I left it.
    Tom

    Unlike the ViewStack in desktop flash, a ViewNavigator only ever has one child in memory at a time. What that means is that when you push a new view on to the view navigator, the existing view is eligible for garbage collection.  When you pop the second view, you are not returned to that view you saw originally, a new one is created.
    The real problem exists because there are event listeners tied to that view, it will never be Garbage Collected (as I understand it ) and so you will always continue to see those events fire.
    Knowing how this works what you need to do is utilize the activate and deactivate events of the View to setup and destroy your timer object.  I have written an example of this and posted it on github.
    Take a look at this and see if it helps you sort out how your view should work.
    https://gist.github.com/951965
    HTH,
    sim

  • Regarding  Complex View

    I have a complex view in which all not null columns selected in view query for the both table,
    No group function,pseudo column,distinct,group by clause,no columns defeined by expression,
    Whether we can do DML operation for this above criteia?

    From the document
    Updates of Object Views
    You can update, insert, and delete the data in an object view using the same SQL DML you use for object tables. Oracle updates the base tables of the object view if there is no ambiguity.
    A view is not updatable if its view query contains joins, set operators, aggregate functions, GROUP BY, or DISTINCT. If a view query contains pseudocolumns or expressions, the corresponding view columns are not updatable. Object views often involve joins.
    To overcome these obstacles Oracle provides INSTEAD OF triggers. They are called INSTEAD OF triggers because Oracle runs the trigger body instead of the actual DML statement.
    INSTEAD OF triggers provide a transparent way to update object views or relational views. You write the same SQL DML (INSERT, DELETE, and UPDATE) statements as for an object table. Oracle invokes the appropriate trigger instead of the SQL statement, and the actions specified in the trigger body take place.

  • Complex view update

    Dear All
    Pls guide me how to update a complex View
    Thanks for reading this post
    *009*

    Hi again,
    You probably need to write an [Instead-of-Trigger|http://download.oracle.com/docs/cd/B12037_01/server.101/b10759/statements_7004.htm#i2064426]
    Regards
    Peter

  • Android Adobe DPS viewer. HTML form dropdown menu closes everytime the viewer navigation pops up.

    I have a web content page which contains a form dropdown menu: <select><option></option></select> ... and so on. I use this as a small filter to narrow a result.
    When I tap the screen, this dropdown menu is shown and works correctly on an iPad. As a side effect the navigation from the Adobe DPS viewer is also shown although this doesn't interfere with the dropdown menu in the HTML. Both are shown.
    On an Android tablet, the html dropdown menu is shown for a fraction of a second until the Adobe DPS viewer navigation pops up. The HTML dropdown menu just won't stay visible.
    My question: How can I solve this? How can I make the HTML dropdown visible on an Android tablet? Or how can I prevent the DPS viewer navigation from showing?
    Thanks

    This phenomenon does not happen on a Samsung Galaxy Tab 2. While not showing the dropdown menu as on an iPad it shows it as a scrollable menu at the bottom.

  • View Navigation Web IC

    Hi All
    I have an issue with view navigation in the Web IC.
    I have created a view that has a done button on it.  When done is clicked, my view returns to the view it was called from but can be navigated to again with the breadcrumb buttons.
    I want the view to be completely destroyed when the done button is clicked and removed from the breadcrumb view.
    Does anyone know how to achieve this.
    Thanks

    Hi thirumala:
    Could you send me the ic web client cook book, or do you have any guide on how to configure transaction launcher, in crm 5.0, i know it is a standar funciontality, but i have the following problem, i need to show some transactions like BP, in icwc, and then pass the transaction the confirmed bp number, i've already configured ITS, but i don't know wich are the following steps to do what i want, so could you give some guideance.
    Thanks & Regards

  • Home view major bug: Home view navigation not available in Common File Dialog Box (i.e. Java, Adobe Photoshop etc)

    Homeview major bug: Homeview navigation not available in Common File Dialog Box (i.e. Java, Adobe Photoshop etc)
    Hi
    All though provisioning somewhat more flexsible and pointing forward ... things are starting to go wrong here ... i.e. pointing to a very potential lack of success introducing users to the new Home namespace/concept ...
    0) Situation if you do not fix 1 + 2:
    You can not release the Homeview feature like this - without fixing 1 + 2.
    If not 1 +2 is fixed you might just as well leave the release of the Homeview feature out of the roadmap for Windows 10. I.e. not ready for use ... or promotion in the UI
    1) How come Homeview has not been included - like other namespaces i.e. Libraries into the Common File Dialog Box?
    How can such a trivial thing to do be missed? I.e. like forgetting to include Homeview into Explorer (would be absurd).
    If not included into the Places Bar of the Common File Dialog Box ... Home View will be unusable - because some very visible applications like Java, Photoshop will not be able to navigate that space easily at all.
    2) Finally, please fix obscure situation in the UI namespace in Explorer
    Please fix obscures like having Home view, Favorites and Libraries (side-by-side complexity and confusion obscuring usability) - all similar concepts but on a different evolutionary step. I.e. have Favorites and Libraries
    hidden - and add i.e. view control like to small buttons whatever to unhide/show the legacy concepts.
    In any case - Home view already seem to migrate/move links from Favorites to the Homeview container.
    Additionally, Home view should migrate links from Libraries to Home view - and provide similar and better functionality.
    Thus going the evolutionary way from Libraries > Favorites > Home - with the later concept of Home providing links to the cloud. Even better, sync relation ships could then later (extended features for Home) be set up among the pins - i.e. concerning
    cloud/network syncing.
    The UI should always reflect the 1 essentional concept - and not under the hood technologies or different evolutionary stages of the same basic/essential concept (technology/implementation free - abstract: "Home with pining of user data space"
    - was previously favorites or libraries (thus obsoleted)). Now the name for that concept is Home. Have it include the technology that replaces Libraries too - i.e. categorization/nesting ... and some whitespace inbetween the nesting (alike some whitespace
    already there inbetween the namespaces in the Explorer UI ... provides easy "modular" reading)

    Hi,
    Please clarify the following:
    * "X: is a network drive, but it's actually a network drive on my machine." - Is "X" a mapped drive to one of your shared folder on network?
    * What is the project directory structure with respect to WEB-INF/web.xml? Are you able to see the three pages (from web & pages folder) in NitroX Editor?
    * Does the modified content appear in "Design view" of index.jsp upon restarting NitroX?
    Ex:
    - modify one of the pages in "web" folder > save the file (alert appears)
    - restart NitroX, does index.jsp display the modified content of included page?
    * If possible please send the test case project which exhibits the behavior to [email protected]
    Thanks,
    M7 Support

Maybe you are looking for

  • OLEDB provider VFPOLEDB for linked server returned message "Invalid path or file name"

    Hello, I'm hoping someone can shed some light on this.  I'd researched this error for days, reading all the post in this forum, however none of them address my issue. We use VFP 9 .dbf tables (free tables).  I setup a linked server to query the table

  • How can I unclear a payment and an invoice

    Hi friends, I need to re-open an invoice as the original payment has been returned by the bank uncleared. I dont want to use FBRA and reset the clearing document as there were hundreds of other items included in that clearing dowcument. Can you pleas

  • Does anyone have an answer?

    "I need to isolate my scanned pencils from their original background in order to ink and color them. How do I do this?

  • Alert

    This is the first time I tried creating an Alert. I have followed the Crystal Xi built-in Help step by step. The alert is triggered by the following condition: Formula = NumericText ({?Employee Number}) and {?Format} = "Employee Daily Totals" I have

  • Problem in SLD

    Hi, By accident I changed de role of the XI Business System in SLD, that I had created according XI 3.0 Installation Guide (Integration Server to Application Program). When I tried to change de role back (Applicatio Program to Integration Server), I