TileLayout: First item in a row

I am using TileLayout on a Spark List.  Is there a way for an individual itemRenderer to know that it is the first item in a row?  Recycling would not be an issue - all the list items are on screen simultaneously.

If the class implement IDropInListItemRenderer , then you can access the listData and use the rowIndex property.  If the class doesn't implement it , you will have to look at the interface and implement it yourself.  Once you get it you can do something like this.
public function someFunct():void
     if ( this.listData.rowIndex == 0 )
          trace("Hoorah !");

Similar Messages

  • Placement of cursor - when ADD button, place cursor on first item in row

    I have several collections on a page. The third collection CATCH_C is usually empty. The user can tab to ADD button. Currently, the cursor is then placed at the first item on the page. I would like it to be place in the first item in that collection. Is that possible?
    ps. when the page is pulled up, the page attributes HTML body has the command onload="html_GetElement('f3_0001').focus()"
    could I do something similiar for c042 in CATCH_C? and if so, where would I place such a statement? again, very new to java/html so all help appreciated.
    karen

    indeed. thanks!
    so, now I have two processes....but neither work. Upon entering the form, the cursor is on the FILE menu (top left of window):
    start_cursor is PROCESS after footer condition REQUEST != ADD
    BEGIN
    HTP.p ('<script>');
    HTP.p ('html_GetElement(''f03_0001'').focus();');
    HTP.p ('</script>');
    END;
    add_cursor is PROCESS after submit condition REQUEST = ADD
    BEGIN
    HTP.p ('<script>');
    HTP.p ('html_GetElement(''f42_9901'').focus();');
    HTP.p ('</script>');
    END;

  • Af:inputListOfValues sets value of first item in result set when using enter key or tab and component set to autosubmit=true

    I'm using JDev 11.1.1.6 and when I type a value into an af:inputListOfValues component and hit either the enter key or the tab key it will replace the value I entered with the first item in the LOV result set. If enter a value and just click out of the af:inputListOfValues component it works correctly. If I use the popup and search for a value it works correctly as well. I have a programmatic view object which contains a single transient attribute (this is the view object which is used to create the list of value component from) and then I have another entity based view object which defines one of its attributes as a list of value attribute. I tried using an entity based view object to create the LOV from and everything works as expected so I'm not sure if this is a bug when using programmatic view objects or if I need more code in the VOImpl. Also, it seems that after the first time of the value being replaced by the first value in the result set that it will work correctly as well. Below are some of the important code snippets.
    Also, it looks like it only doesn't work if the text entered in the af:inputListOfValues component would only have a single match returned in the result set. For instance given the result set in the code: Brad, Adam, Aaron, Fred, Charles, Charlie, Jimmy
    If we enter Cha, the component works as expected
    If we enter A, the component works as expected
    If we enter Jimmy, the component does not work as expected and returns the first value of the result set ie. Brad
    If we enter Fred, the component does not work as expected and returns the first value of the result set ie. Brad
    I also verified that I get the same behavior in JDev 11.1.1.7
    UsersVOImpl (Programmatic View Object with 1 transient attribute)
    import java.sql.ResultSet;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import oracle.adf.share.logging.ADFLogger;
    import oracle.jbo.JboException;
    import oracle.jbo.server.ViewObjectImpl;
    import oracle.jbo.server.ViewRowImpl;
    import oracle.jbo.server.ViewRowSetImpl;
    // ---    File generated by Oracle ADF Business Components Design Time.
    // ---    Wed Sep 18 15:59:44 CDT 2013
    // ---    Custom code may be added to this class.
    // ---    Warning: Do not modify method signatures of generated methods.
    public class UsersVOImpl extends ViewObjectImpl {
        private static ADFLogger LOGGER = ADFLogger.createADFLogger(UsersVOImpl.class);
        private long hitCount = 0;
         * This is the default constructor (do not remove).
        public UsersVOImpl () {
         * executeQueryForCollection - overridden for custom java data source support.
        protected void executeQueryForCollection (Object qc, Object[] params, int noUserParams) {
             List<String> usersList = new ArrayList<String>();
             usersList.add("Brad");
             usersList.add("Adam");
             usersList.add("Aaron");
             usersList.add("Fred");
             usersList.add("Charles");
             usersList.add("Charlie");
             usersList.add("Jimmy");
             Iterator usersIterator = usersList.iterator();
             setUserDataForCollection(qc, usersIterator);
             hitCount = usersList.size();
             super.executeQueryForCollection(qc, params, noUserParams);
        } // end executeQueryForCollection
         * hasNextForCollection - overridden for custom java data source support.
        protected boolean hasNextForCollection (Object qc) {
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             if (usersListIterator.hasNext()) {
                 return true;
             } else {
                 setFetchCompleteForCollection(qc, true);
                 return false;
             } // end if
        } // end hasNextForCollection
         * createRowFromResultSet - overridden for custom java data source support.
        protected ViewRowImpl createRowFromResultSet (Object qc, ResultSet resultSet) {
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             String user = (String)usersListIterator.next();
             ViewRowImpl viewRowImpl = createNewRowForCollection(qc);
             try {
                 populateAttributeForRow(viewRowImpl, 0, user.toString());
             } catch (Exception e) {
                 LOGGER.severe("Error Initializing Data", e);
                 throw new JboException(e);
             } // end try/catch
             return viewRowImpl;
        } // end createRowFromResultSet
         * getQueryHitCount - overridden for custom java data source support.
        public long getQueryHitCount (ViewRowSetImpl viewRowSet) {
             return hitCount;
        } // end getQueryHitCount
        @Override
        protected void create () {
             getViewDef().setQuery(null);
             getViewDef().setSelectClause(null);
             setQuery(null);
        } // end create
        @Override
        protected void releaseUserDataForCollection (Object qc, Object rs) {
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             usersListIterator = null;
             super.releaseUserDataForCollection(qc, rs);
        } // end releaseUserDataForCollection
    } // end class
    <af:inputListOfValues id="userName" popupTitle="Search and Select: #{bindings.UserName.hints.label}" value="#{bindings.UserName.inputValue}"
                                                  label="#{bindings.UserName.hints.label}" model="#{bindings.UserName.listOfValuesModel}" required="#{bindings.UserName.hints.mandatory}"
                                                  columns="#{bindings.UserName.hints.displayWidth}" shortDesc="#{bindings.UserName.hints.tooltip}" autoSubmit="true"
                                                  searchDesc="#{bindings.UserName.hints.tooltip}"                                          
                                                  simple="true">
                              <f:validator binding="#{bindings.UserName.validator}"/>                      
    </af:inputListOfValues>

    I have found a solution to this issue. It seems that when using a programmatic view object which has a transient attribute as its primary key you need to override more methods in the ViewObjectImpl so that it knows how to locate the row related to the primary key when the view object records aren't in the cache. This is why it would work correctly sometimes but not all the time. Below are the additional methods you need to override. The logic you use in retrieveByKey would be on a view object by view object basis and would be different if you had a primary key which consisted of more than one attribute.
    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, Key key, int i) {
        return retrieveByKey(viewRowSetImpl, null, key, i, false);
    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, String string, Key key, int i, boolean b) {
        RowSetIterator usersRowSetIterator = this.createRowSet(null);
        Row[] userRows = usersRowSetIterator.getFilteredRows("UserId", key.getAttribute(this.getAttributeIndexOf("UserId")));
        usersRowSetIterator.closeRowSetIterator();
        return userRows;
    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, Key key, int i, boolean b) {
        return retrieveByKey(viewRowSetImpl, null, key, i, b);

  • Internal error in item 0000000000: asset row is not complete

    Hello,
    First let me give a little background of what I am trying to accomplish.  I set up a new depreciation area 02, which is essentially a copy of depreciation area 01 Book Depreciation.  The purpose of my new area 02 is to post depreciation only to a seperate expense account for a small number of assets.  I set up the 02 depreciation area as a "Real Depreciation Area" with the setting "3 - Area Posts Depreciation Only" setting for Posting in GL.
    I activated my area (AFBN) and changed a few assets to my new depreciaion area 02 to my desired key.  When I try to post depreciation for one of my changed assets, I receive the error message:
    Message(s) when structuring line items for document number ERROR00001
    Internal error in item 0000000000: asset row is not complete
    I have confirmed that my account determination (AO90) settings for depreciation are set up correctly for 02 for each of my classes (comparing 01 to 02 - only difference is expense account).  I have also checked all of options in the "Overview for Experts" section and "Check Consistency" areas, as well as all of the SAP Online help for FI-AA.  I have also researched my field status group BS11 and changed a setting for Consolidation Transaction Type to be set to an optional entry.
    Thanks in advance.
    Mark

    Message(s) when structuring line items for document number ERROR00001 - Message no. AAPO510
    Diagnosis
    Messages were issued when line items were created for document ERROR00001. The related lines in the error list are from 2 to 2.
    The next lines in the error log provide more information on the errors that occurred, or information or warnings that were issued.
    System Response
    Information messages are intended to give the user information on certain actions of the program during document creation.
    Serious errors during processing can prevent the document from being posted. However, in the case of serious errors, the system continues processing and checking other line items of the same document.
    Procedure
    Information messages do not cause processing to terminate. No further action is required.
    For serious errors that cause processing to terminate, try to find the cause of the error. After you correct the error, you have to restart the posting program.
    Internal error in item 0000000000: asset row is not complete - Message no. AAPO191
    Thanks
    Edited by: Mark Vitalbo on Jul 16, 2009 8:00 PM

  • Get the first item value of previous record in a multi record block

    Hai,
    I have a multi record block with four items.I should get the first item value of the previous record so that I can increment its value in the current record.
    Thanks.........

    If you want a distinct value in each row or to be able to retrieve the records in the same order they were written then you should use a sequence.
    If you want to retrieve the records in the same order they were created in the block then you will need a diffferent solution to the one you outline here since a user could enter a new record between two others.
    I posted this a while back in response to someone who was using a sort_key item and resetting it for each row when a new record was inserted:
    If you make the sort_key bigger then you have much more room to insert new rows in between existing rows without having to reset all the sort_keys.
    Eg. you have rows with sort_keys of 129282000000000000 and 129283000000000000 (you can have more zeros if you want) and you want to insert a row in between. if you're using oracle forms then the user would have to click on the first of these rows and then do 'insert'. in your insert process you would store the sort keys of the current record and the one below, create a blank record in between and set the sort_key of that record to the average of the other two. you will be able to insert many new rows in between the original 2 before running out of space in the sort_key field.
    the method above is not sufficient, there are some other cases to consider:
    1) when the user is on the last record of the block then you will just create a new record with sort_key set to a greater number than the row before. you can have the sort_key defined as number(38) and to safely allow you to enter 1000 rows each new row would normally be 10E33 greater than the previous one.
    2) when the user is entering the first record then just set the sort_key to 10E33.
    3) on the off-chance that you do insert a great number of records and cannot insert another in between then you would need to alert the user, process the records so that the sort_keys are evenly spaced and requery the block. this processing could be scheduled nightly to make this eventuality even less likely.
    4) make sure the user cannot run the default 'clear_record' procedure. this would break my method as well as yours!
    James.

  • First item of itemrenderer created twice?

    I have a datagrid with an itemrenderer witch for every item
    created it adds an event listener to the parentdocument.But the
    first item(as sorted from the datagrid) always has two listeners so
    the handler insideot runs twice.anyone know What's is wrong?

    Flex itemRenderers are only created for the visible rows of a
    list control, plus one or two extra for recycle buffering. The
    itemRenderers are recycled as the user scrolls the list. For
    example, if you have 1000 items but only 10 rows visible, then only
    11 or 12 itemRenderers are created. At first they show records
    1-10. As the user scrolls, the data for record 1 scrolls out of
    view, but the itemRenderer that was showing that data is moved to
    the bottom of the list area and is given the data for row 11. The
    itemRenderers for records 2-10 are shifted upward.
    Sorting the list simply causes the itemRenderers to receive
    new data - they generally do get moved to new locations as the
    result of a sort of a filter.
    If you add event listeners on the parentDocument you may be
    getting very confused and mismatched data and events as the list is
    scrolled.

  • Remove first item of ListBox

    Hello,
    Can anyone tell me how to remove the first item of a ListBox.
    I don't want to use dataprovider.removeItemAt(), because am
    using the dataprovider elsewhere.
    Anyone.
    Thx

    Flex itemRenderers are only created for the visible rows of a
    list control, plus one or two extra for recycle buffering. The
    itemRenderers are recycled as the user scrolls the list. For
    example, if you have 1000 items but only 10 rows visible, then only
    11 or 12 itemRenderers are created. At first they show records
    1-10. As the user scrolls, the data for record 1 scrolls out of
    view, but the itemRenderer that was showing that data is moved to
    the bottom of the list area and is given the data for row 11. The
    itemRenderers for records 2-10 are shifted upward.
    Sorting the list simply causes the itemRenderers to receive
    new data - they generally do get moved to new locations as the
    result of a sort of a filter.
    If you add event listeners on the parentDocument you may be
    getting very confused and mismatched data and events as the list is
    scrolled.

  • SQL Loader Inserts chr(13) and chr(10) in the first column of every row.

    Hi,
    I have exported a data in a pipe delimited file using TOAD in one database. Now I want to load the data in my local database using SQL Loader. However every time I try to load the data a double quote followed by a new line is entered for the first column of each row. Unfortunately the delimited file is very big and hence can't be posted here. However I tried the same with a customized table and its data and found the same problem. Below are the table structures and control file that I used.
    create table test_sql
    a varchar2(30),
    b date
    insert into test_sql values('51146263',sysdate-3);
    insert into test_sql values('51146261,sysdate-1);
    EXPORTED PIPE DELIMITED FILE_
    A|B|!##!
    51146261|04/14/13 4:55:18 PM|!##!
    51146263|04/12/13 4:55:32 PM|!##!
    create table test_sql1 as select * from test_sql where 1=2;
    CONTROL FILE_
    OPTIONS(SKIP=1)
    LOAD DATA
    INFILE 'C:\Users\Prithwish\Desktop\Test.txt' "str '!##!'"
    PRESERVE BLANKS
    INTO TABLE TEST_SQL1
    FIELDS TERMINATED BY '|' OPTIONALLY ENCLOSED BY '"'
    TRAILING NULLCOLS
    A CHAR(2000),
    B DATE "MM/DD/YYYY HH12:MI:SS AM"
    select * from TEST_SQL1;
    After this when I paste it in notepad I get the following result
    A B
    51146261"     14-APR-0013 16:55:18
    51146263"     12-APR-0013 16:55:32.
    I have no idea how the quotes or the newline appear. Is this a Toad bug? Any help would be greatly appreciated. Really urgent.
    Thanks in advance
    Regards

    Hi Harry,
    I actually thought that the str !##! was causing the problem. Actually my original export has some new lines in some specific columns so I can't keep the new line as my line terminator and hence I kept the !##! as my terminator.
    When I put the same data in a notepad and load it there is no problem at all. For e.g I just typed the following in a notepad and the data loaded just fine.
    A|B|!##!
    51146261|01-01-01 10:10:10 AM|!##!
    51146263|01-01-01 11:11:11 AM|!##!
    Its just when I load the exported file there the problem arises though I have verified the file using UNIX as well using octal dump and found no hidden characters.
    Regards,
    Prithwish

  • Navigate to the first item in a updatable report

    on my page i have a master/detail form. When a new detail - record is created, the cursor navigate to the first item on the page => it is the first item of the master! What I have to do, that the cursor navigate to the first item in the new detail-record ??
    Thanks
    Robert

    Hi Andy,
    thank you for your answer.
    When the program start, I can not find the cursor. I think, I have a problem to reference the item in the updatable report. I wrote the following lines:
    <script language="JavaScript1.1" type="text/javascript">
    alert('Vor Cursor Navigation');
    first_field('#FKOM_RUFNR#');
    </script>
    (FKOM_RUFNR is a column of the select statement in the report!!)
    A second problem: The cursor navigate to the field - first_field('FIELD_NAME') - every time. But the cursor should navigate to the field in the updatable report, if the button "ADD" in the region of the updatable report was clicked. If the page was displayed without clicking the ADD - button, the cursor should navigate to the first item in the master form ( like => Cursor focus: first item on the page). How can I do that ??
    Thanks
    Robert

  • Powershell Iterate through webs and lists to get Document ID Value of first item

    After some some trial and error I came up with the follow script. But it's so slow! And seems to be missing my document centre - it has about 80000 items in it.
    Two questions: Can I make this quicker? and why can't it handle getting results from the document centre?
    $webs = (Get-SPSite "http://portal...." | Get-SPWeb -Limit all -ErrorAction SilentlyContinue)
    if($webs.count -ge 1 -OR $webs.count -eq $null)
    foreach($web in $webs)
    $lists = $web.Lists
    foreach($list in $lists)
    if ($list.BaseType -eq "DocumentLibrary" -OR $list.BaseType -eq "GenericList")
    $item = $list.Items[0]
    if (($item -ne $null) -and ($item["Document ID Value"] -ne $null))
    $finalstring = $item["Document ID Value"].ToString()
    write-output $finalstring | Out-File "C:\scripts\results.txt" -append
    $web.Dispose()

    I thought that pointing to items[0] would literally just grab the first item.
    So what do I do here? How can I use an spquery in my code? I'm confused in the order and the exact sytax I would use the spquery.
    Thanks for you help so far Alex.
    Edit: Amended my code, is this correct?
    Add-PSSnapin Microsoft.Sharepoint.PowerShell
    $webcount = 0
    $listcount = 0
    $itemcount = 0
    $itemid = ""
    $TimeStamp = Get-Date
    $Date = $TimeStamp.ToShortDateString()
    $Time = $TimeStamp.ToShortTimeString()
    $webs = (Get-SPSite "Http://portal..." | Get-SPWeb -Limit all -ErrorAction SilentlyContinue)
    $query = New-Object Microsoft.Sharepoint.SPQuery
    $query.Query = "<Where><IsNotNull><FieldRef Name='ID'/></IsNotNull></Where>,<OrderBy><FieldRef Name='_dlc_DocId' Ascending='True'/></OrderBy>"
    $query.ViewFields = "<FieldRef Name='_dlc_DocId'/>"
    if($webs.count -ge 1 -OR $webs.count -eq $null)
    foreach($web in $webs)
    $lists = $web.Lists
    foreach($list in $lists)
    if ($list.BaseType -eq "DocumentLibrary" -OR $list.BaseType -eq "GenericList")
    $listcount += 1
    $items = $list.GetItems($query)
    foreach ($item in $items)
    if ($item["_dlc_DocId"] -ne $null)
    $itemid = $item["_dlc_DocId"].ToString()
    if ($itemid -ne "")
    $itemcount += 1
    $finalstring = $Date + " ; " + $Time + " ; " + $web.url + " ; " + $list.title + " ; " + $itemid
    write-output $finalstring | Out-File "C:\scripts\results.txt" -append
    break
    $webcount += 1
    $web.Dispose()
    Write-Host "Amount of Webs checked:"$webcount
    Write-Host "Amount of Document Library Lists:"$listcount
    Write-Host "Amount of valid IDs:"$itemcount

  • Hide "more" button in a list view, only works for first item in the list

    I have the following code in a list view that outputs several dozen items in a web app.  The code only works for the first item, how can I make it loop through and execute the test for each item in the list view?  The {tag_hide more button} is a checkmark field that yields a numeric 1" if checked otherwise yields a numeric "0".
    <div id="more-option">
            <p class="right"><a href="{tag_itemurl_nolink}" class="btn btn-small btn-very-subtle">More &rarr;</a></p>
          </div>
          <div class="more-selection" style="display: none;">{tag_hide more button}</div>
          <script>
    if ($(".more-selection").text() == "1") {
        $("#more-option").hide();
    </script>

    What's the URL for the site where you are using this?  Offhand, it looks like it should work with your first example so you are either placing the script before those elements are loaded or you might try wrapping your current javascript inside the:
    $(document).ready(function() {
    --- your existing javascript here
    This make sure the code runs once all the html is loaded on the page.  Without seeing a URL and debugging with the js console in Chrome I can't give you a solid answer.
    But, I do know that you can probably do this with a lot less markup.  Once we figure out what the actual problem is I have a better solution mocked up for you on jsfiddle.
    When looking at my HTML code on jsfiddle, please realize I setup some dummy HTML and removed your tags and added actual values which would be output by your tags.  The main thing I did was remove the whole div.more-selection and instead, added a "data-is-selected" attribute on your div.more-option element.  Then, in my javascript for each div.my-option element on the page, we loop through them, find the value of that data attribute and hide that div if it's less than 1 (or 0).
    Here's the fiddle for you to look at:  http://jsfiddle.net/thetrickster/Mfmdu/
    You'll see in the end result that only two divs show up, both of those divs have data-is-selected="1".
    You can try pasting the javascript code near the closing </body> tag on your page and make sure to wrap my js inside a <script> tag, obviously.  My way is neater on the markup side.  If you can't get it to work it's likely a jquery conflict issue.  My version is using the $(document).ready() method to make sure all the code is loaded before it runs.
    Best,
    Chris

  • Is it possible to show first item in a Drop down list

    Is it possible to automatically display the first item in a drop down list ?
    The reason I ask is  ... I am generating pre-filled PDF forms using XML data files.
    Whenever there is a certain type of data I am populating a drop down list for the user to review.
    Currently, the user must click on the drop down to see if data is there regardless of whether there is no data at all or many data lines of data..
    I would like to make it clear to the user whether or not there is any data - right awa.y
    I have considered creating a display item next (like a check box or a text field ) next to the drop down and setting it to cindicate if there is data, etc -
    but i thougth that I would ask if the drop down could simply be set to automatically display the first item in the list (this is the preferred functionality)
    If this is not possible I can always create a check box and set it if there is any data as an  indicator for the user ..
    Thanks

    You can do this way..
    Place the code in Inititalize event with Java Script
    if(DropDownList1.rawValue == null)
        DropDownList1.selectedIndex = 0;
    You need to check if the Dropdown has a value selected from the previous save.. If not then set the selected item to 0th index. (which is 1st one in the dropdown values)..
    Thanks
    Srini

  • Since I upgraded my Ipad2 with IOS6, i keep getting kicked out of Safari after I am in the middle of looking for something and on Ebay it continually kicks me back to the first item if I click to see a picture, say after I am 150 items down.  Even CNN too

    Since I upgraded my Ipad2 to IOS6, I keep getting kicked out of Safari after I am in the middle of searching for something.  Also, Ebay kicks me back to first item if I click on an item, say number 153 or 642!  Very annoying.  Even CNN kicked me out back to Ipad home screen last night!  How do I make it stop???

    My question is this:
    What is the best way of getting the pictures out of the iPhoto Library? I
    Select the photos you want out and export them as JPGEs - kind = current for the current edited version - kind = original for the original
    f I get access to the original folders within the library by right-clicking any photo and then being able to browse inside the library, am I going to have any problems if I copy or move those original pictures directly to a folder outside of the iPhoto Library?
    Copying photos out will not be a problem if you make no errors - for me that is not a good bet - it is best to stay out of yoru iPhoto library
    Would it be better to export the pictures?
    Yes
    Does exporting using "current" under "Kind" give you the original more safely?
    No - it gives you the current version which may be the original if no changes have been made or will be the current edited version if edits ahve been made
    Also, any suggestions on how to best have photos OUTSIDE of an iPhoto library organized so that iPhoto can reference them, but your backup is also organized?
    In the iPhoto preferences un check the advanced preference to "copy imported items to the iPhoto library"
    HOWEVER - this is not recommended - it makes importing more complicated, deleting more complicated and makes replacing a hard drive or going to a new computer much more difficult - and it puts you totally in charge of your original photos - being sure that they are there and do not get moved
    I'd like to have my photos organized by date in the backup as well, so that I don't have to backup all my pictures every time I add new ones, just add the latest to the backup drive.
    Finally, any suggestions on what to do with pictures that you scan so that they appear by the date they were taken as opposed to the date they were scanned? Is there a way to modify the date of the photo info?
    Select the photos in iPhoto and use the batch change command under the photos menu - the tiem and date option
    LN

  • Validation on first item

    Hi,
    i am using apex_3.2.1.
    I have these items and i want to create validation on p1_item1 to check values.if the value entered in first item is
    exist into the database it shows the alert msg value already exist and control should not move to the next item.
    p1_item1
    p1_item2
    p1_item3
    p1_item4

    Hi,
    I want to focus the cursor on name item until the user
    not entered the Unique value. I am sending
    you login id and password.
    what I have done i am dispalying
    popup on item if user not entered the unique value in name item.
    I have implement this using ajex. name is the item on which
    i am displaying popup if value entered in name
    item exist into the database popup should raise and after click on ok
    button of popup cursor should point to the same item until user not entered the unique value.
    1)The problem is cursor not focus
    to the name item after display of the popup in case of incurrect value.
    2)it display The popup if i am click on the cancel button too.
    how could i resolve this problem. please help me to sort out this problem.
    TABLE NAME: LANGUAGE_MAS
    APPLICATION PROCESS: LANG_MAS\
    PAGE ITEM: TAB_DATA_TYPE
    i am sending you my application login id and password.
    Application No-51552
    page No -2 and 3
    URL ---apex.oracle.com
    Workspace   ---  DISCUSSION
    User Name  ----   [email protected]
    passowrd     ----      fuvubeEdited by: Vedant on May 19, 2011 10:17 PM

  • Only display first item when item no is bound to viewBT117S_SRC/AdvancedSRL

    Hi ;
    I want to add order item attributes to the lines of the page "service confirmatioms" , at first It was displaying only order header lines in standart ,  i enhanced the context node and added "item line no" of the orders but in the view it displays first item lines for each order.ıf you have 18 orders , it displays only 18 lines and only item no 10 for each one.
    new attribute i added to the context no in following orders (item line no)
    -->BTADVSSrvCfm
        -->BTOrderHeader
           -->BTHeaderItemsExt
               --> BTOrderItemAll
                    -->Item No
    For each order I have at least 2 lines , Why does it displays only first items after I enhanced the context node by adding item line no?
    What sould I follow the steps?
    Thanks

    Hi ;
    I want to add order item attributes to the lines of the page "service confirmatioms" , at first It was displaying only order header lines in standart ,  i enhanced the context node and added "item line no" of the orders but in the view it displays first item lines for each order.ıf you have 18 orders , it displays only 18 lines and only item no 10 for each one.
    new attribute i added to the context no in following orders (item line no)
    -->BTADVSSrvCfm
        -->BTOrderHeader
           -->BTHeaderItemsExt
               --> BTOrderItemAll
                    -->Item No
    For each order I have at least 2 lines , Why does it displays only first items after I enhanced the context node by adding item line no?
    What sould I follow the steps?
    Thanks

Maybe you are looking for

  • How can i get user to use my application without logging on as a developer?

    Hi Can anyone tell me or point me in the direction of information regarding allowing users to be pointed straight to an application on apex. Curently i log in via the apex.oracle.com home page use my database name then my username and password. But t

  • Verizon will you please do something to solve this problem?

    Recently moved to a location in Arizona where I plan to spend the next six months.  Checked Verizon's coverage map and saw that 4g lte was fully available in the area.  I have since learned that is not the case, and it is somewhat of a joke amongst t

  • Failed while creating virtual Ethernet switch. Failed to connect Ethernet switch port

    Hello Folks I am completely stuck with the configuration of my virtual networks. I have one logical switch left to add to one of my Hyper-V 2012 R2 hosts when I started getting the error below when I try to add logical switches to either Hyper-V Host

  • Logic 7 with UAD Card!!!

    Hey... Is it possible or not to work with thw uad plugins while I'm still recording and workin on a song, is there a way to make it work without latency or do i have to wait until they re-write the program...???

  • Wrong Restore Disks? (iBook G4 800MHz - 10.3)

    Hi all, I hope someone can help me with this... I just bought a used iBook G4 and received the complete package of Restore Disks. OS X 10.3 installed perfectly, but when I tried to restore the rest of the software, I got a "Wrong Disk" dialog box say