The multiple lines in hGrid Page update

Hi all

in the page hGrid, I update a button for each row.when I select the first line (Refresh button) to update it will go to the update of the Page.
How can I select the second line for update.

is there any other scenario is there in this type of requirement.

Selection Records empNo, Ename Job sal update
CheckBox1 Row1 12 smith Manager 5000 updateBtn1
CheckBox2 Row2 13 james seller 7000 updateBtn2

like that when I select the first update the update button, it will go to the update page of here I'm going to update (the update, I will treat an another Seperat Page).
Suppose, I want to update two records (Row1 and Row2), how it Possible.
How can I get action for checkboxes update several lines.
Could you please give me the Solution for this.

ThankswithRegards,

Perhaps because of network problem that I couldn't update your last post.

1. do not add the button to update for each row.
2. simply add a button to single update above HGrid region
3. on this update the button event get the values of the selected lines and go update page
4. in the update of the page create a view selected rows in the table of HGrid.
Button put record on this page. Once the user updates the files and click on save button data will be saved.

Button put record on this page. Once the user updates the files and click on save button data will be saved.

-Anand

Tags: Oracle Applications

Similar Questions

  • The table layout where the new line can be inserted / updated rest is read only

    Jdev Studio Edition Version 11.1.1.3.0.

    I have a (JSF) page that has table. My requirement is I need make the line as read only with the exception of the newline (created with the new button) as update / insert able. Please suggest a way around so that the user can only add records to the table but couldn't change all existing records in the table.

    Please advice.
    Thank you.

    S Chatterji.

    S. Chatterji,

    If you are using ADF business components, just go to the VO on which is based the table and brand every attribute as "Editable when new" only.

    John

  • I have a computer with xp pro SP3, I need to reinstall but I can't find it in the program add remove verified page updated box ut anywhere I can find it

    the computer is a desktop gateway 433 c which to be honest, I have a clean record and used, help to restore the registry to the backup of it is when and support or convenience store leave it xp service pack 3 is not in the program add remove page I can download and install again or what

    the computer is a desktop gateway 433 c which to be honest, I have a clean record and used, help to restore the registry to the backup of it is when and support or convenience store leave it xp service pack 3 is not in the program add remove page I can download and install again or what

    I solved this problem myself i went and downloaded service pack 3 and just reinstall it but thanks to PA bear not to understand everything what I said that reminded me that if you want to get something fixed do it yourself because someones going to be hateful if your grammar is a little off if you notice I left out the punctuation confused is I did right, but you're right reg cleaners do more harm then good

  • Must why/list of the menus and the checked boxes be reset to the original value of a page updated?

    Whenever I go to an update to update the record in a Recordset, the 'list' and checked all boxes must is be returned to original options possible that they can maintain their value without a reset?

    I assume you are using Dreamweaver server behaviors. You know that they have been removed from the latest versions of Dreamweaver, because they use a code that is outdated and will stop working in future versions of PHP.

    That said, the technique of preserving values is very simple, as long as you are familiar with PHP. You need recover the value of the recordset and use a conditional statement to set the attribute "selected" on the correct menu option and the 'checked' attribute, select the correct option.

    I don't remember the code that create DW server behaviors, but you need to add something like that to each element:

  • Find paragraphs that begin on the last line of a page/column?

    It is possible to mark them?

    But here is not a solution the menu 'keep lines of the option '.

    (this is a request to the editor)

    The idea is to detect this kind of lines:

    Untitled1.jpg

    It should be pretty easy to score, for example with bar. But I don't see what the advantage in this operation would be compared to the use of the keep options.

    app.findGrepPreferences = null;

    app.findGrepPreferences.findWhat = "^."

    myFinds = app.activeDocument.findGrep ();

    for (i = 0; i< myfinds.length;="">

    myFind = myFinds [i];

    myLine = myFind.lines [0];

    If (myLine == myFind.parentTextFrames [0] .lines [-1]) myLine.strikeThru = true;

    }

    I think that should do it (even if it has completely not tested).

  • anchor tag unique to the multiple links on a page

    to makes things easy, I wanted to know how the arrow down on this site. Cyclemon / experience of the... It is a single anchor tag pinned down. It is just move to the bottom of 1 article to another. I have no idea how to do that and I'd like someone to teach me. Thank you.

    I was going by the code that has been on this page. The problem you would have with the implementation with Muse in this way is that the code directly references the name of the div on the page. Muse names arbitrarily its containers, so you should publish the page and note the names he gives them before that you could write code to do it.

    Is there a reason that you should do this instead of the standard anchor method?

  • Find and delete the graphic lines of geometric limits

    Hello world

    I'm really desperate after days of web browsing and the forums that I still cannot understand this.

    I'm working on InDesign CS3 on a MacBook Pro with Snow Leopard.

    I have a catalog of 300 pages, set up thanks to a data merge. Unfortunately this way, I produce 2 graphic lines at the end of each page to which I would like rather to remove. Since I don't want to do it manually to each page and I'll have to set up this catalog quite frequently in the future I would like to remove these lines using Applescript.

    Since I have about 12 more of the same lines on each page (same style, color, stroke etc) I thought that the only way to tell which Applescript to remove is the geometrical limitations because these lines always run the same coordinates on each page.

    Unfortunately I can't understand it. I tried the following code:

    tell application "Adobe InDesign CS3"
         tell document 1
              repeat with oneFrame in (get graphic lines whose stroke weight = 1)
                   if geometric bounds of oneFrame is {0, 0, 0, 210} then
                        delete oneFrame
                   end if
              end repeat
         end tell
    end tell
    
    
    

    RESPONSE

    tell application "Adobe InDesign CS3"
         get every graphic line of document 1 whose stroke weight = 1
              --> {graphic line id 187 of page id 177 of spread id 172 of document "Untitled-16"}
         get geometric bounds of graphic line id 187 of page id 177 of spread id 172 of document "Untitled-16"
              --> {0.0, 0.0, 0.0, 210.0}
         delete graphic line id 187 of page id 177 of spread id 172 of document "Untitled-16"
    end tell
    
    
    

    It worked well for the line to x y 0mm 0mm with a length of 210mm.

    I tried the same thing with a line x 3mm y 134mm length of 210mm with the following code

    tell application "Adobe InDesign CS3"
         tell document 1
              repeat with oneFrame in (get graphic lines whose stroke weight = 1)
                   if geometric bounds of oneFrame is {134, 3, 134, 213} then
                        delete oneFrame
                   end if
              end repeat
         end tell
    end tell
    
    
    
    

    ANSWER:

    tell application "Adobe InDesign CS3"
         get every graphic line of document 1 whose stroke weight = 1
              --> {graphic line id 213 of page id 177 of spread id 172 of document "Untitled-16"}
         get geometric bounds of graphic line id 213 of page id 177 of spread id 172 of document "Untitled-16"
              --> {134.0, 3.0, 134.0, 213.0}
    end tell
    
    

    It was my best shot. No idea if I'm on the right track or totally out of bounds.

    Any help would be much appreciated!

    Thanks in advance...

    Osinho

    Take a look at that show the values for the geometric limits. These figures related to your x and is coordinated and you refer to them by their article in the list, for example, item 1 is the first "134,0" in your list, point 2 is called the "3.0", etc. So you need to refer to "that item 2 of geometric limits = [regardless of the value you're trying to match].

    If your document is very complicated, I think I would add another modifier to ensure that you get the right things, to say if these lines have a color that is not used on other graphic in the document lines, or if their weight of race is different, or even tests two items in the list of geometric limits if there is two that appear systematically in all the elements you want to delete - something for you make sure that you ONLY get references to the items that you want and are not likely to delete something, you need to keep.

    Good luck and welcome to AppleScript!

  • Simple-by-side tables doesn't wrap to the next line in Opera or IE

    I don't know that I'm missing a simple solution for this...

    I have a page that contains six tables of 2 cells. Each top cell contains a small image and each lower cell has a text, and each table is there aline setting set to "left". When you view this page in Opera for Mac and IE for Windows, individual tables will not wrap to the next line, when this page is imported into a narrow iFrame or even when the page is displayed, alone, in a browser window that was made very narrow. In these two browsers, I have a horizontal scroll bar, but in other browsers the content wraps to the next line if necessary and the vertical scroll bars appear when necessary (which is the desired effect).

    The page can be seen here: http://www.electronicgraphicsgroup.com/apartments/specadlibrary/latestadditionscontent.htm l

    How can I force opera and IE to wrap these tables to the next line if necessary as they do already in Chrome, Firefox (Mac and PC) and Safari (Mac and PC)?

    Any ideas would be much appreciated.

    Thank you!!

    Remove the width and align = "left" of your tables and give each a class = "fltLeft" as below.

    Then add to your css stylesheet:

    {.fltLeft}
    float: left;
    }

  • Update of the Page choose the first line only

    Hello

    I created SearchPG and from there I click on the UpdatePencil and regardless of which line is clicked, I always get the first line of the table of search results.

    Please notify.

    Thank you!

    Hey,.

    Please get your hands on the original Version and run the query in providing parameters of the basic page.

    If you use EO, implement the code in AM or you can add the code to the CO of the UpdatePage.

    I hope this helps.

    Thank you
    Rakesh

  • Arrow keys serve page upwards or downwards instead of the single line upward or down, can't change it back.

    Keyboard up and down arrows use page up/page down instead of the single line up/down keys. I can't find how to change their return.

    This has happened

    Each time Firefox opened

    is my last installed update

    Maybe you turned Caret browsing. Press F7 and see if this is fixed.
    http://KB.mozillazine.org/accessibility.browsewithcaret

  • Pages based on the recognized but not secondary model updated

    I have DW CC. I do minor changes to the names on the bars of subnavigation on templates.  When I record, change is recognized and asks me if I want to update pages based on this template, and lists all the.  I updated.  The next area is LOOK IN: [auto filled in the correct Sub model], MODELS of UPDATE is enabled, and this appears:

    Macintosh HD:Users:marilynsair:Public:Website MSullivan 2015:htdocs update:

    Fact.

    files: 7

    updated files: 0

    the files that could not be updated: 0

    total: (0: 00:01).

    I get this same result for all secondary models.  I tried other ways to update and did not work.

    Here is the code for the template above under:

    "< html > <!-InstanceBegin template="/Templates/toplevel.dwt ' codeOutsideHTMLIsLocked = 'false'->

    < head >

    <!-InstanceBeginEditable name = "doctitle"-->

    lease < title > equity sharing agreement contract option forms to sell home < / title >

    <! - InstanceEndEditable - >

    < meta http-equiv = "Content-Type" content = "text/html"; >

    <!-fireworks MX, Dreamweaver MX target.  Created Tuesday, may 27, 11:39:27 GMT - 0700 2003->

    < script language = "JavaScript" >

    <!--

    <!--

    function MM_findObj (n, d) {//v4.01

    var p, i, x;  if(!d) d = document; If ((p = n.IndexOf ("?")) > 0 & & parent.frames.length) {}

    d = parent.frames [n.Substring(p+1)] .document; n = n.Substring (0, p) ;}

    If (!) () x = d [n]) & & copyrights) x = d.all [n]; for (i = 0;! x & & i < d.forms.length; i ++) x = d.forms [i] [n];

    for (i = 0;! x & & d.layers & & I < d.layers.length; i ++) x = MM_findObj (n, d.layers [i] .document);

    If (! x & & d.getElementById) x = d.getElementById (n); Return x;

    }

    function MM_swapImage() {//v3.0

    var i, j = 0, x, a = MM_swapImage.arguments; document. MM_sr = new Array; for (i = 0; i <(a.length-2); I += 3).

    If ((x = MM_findObj (a [i]))! = null) {document. MM_sr [j ++] = x; if(!x.oSrc) x.oSrc = x.src; x.SRC = a [i + 2] ;}

    }

    function MM_swapImgRestore() //v3.0 {}

    var i, x = offline. MM_sr; for (i = 0; a & & I <.) Length & & (x = a [i]) & & x.oSrc; i ++) x.src = x.oSrc;

    }

    function MM_preloadImages() {//v3.0

    var d = document; If (d.images) {if(!d.MM_p) d.MM_p = new Array();

    var i, j is d.MM_p.length, a = MM_preloadImages.arguments; for (i = 0; i <.) Length; i ++)

    If (a [i].indexOf("#")! = 0) {d.MM_p [j] = new Image; d.MM_p [j ++] .src = a [i] ;}}

    }

    ->

    < /script >

    "" < link href = "... / _includes/style.css" rel = "stylesheet" type = "text/css" >

    <!-InstanceBeginEditable name = "head"--> <!-TemplateBeginEditable name = "head"--> <! - TemplateEndEditable - >

    < style type = "text/css" >

    <!--

    . Style1 {make-size: 9px}

    . Style4 {color: #990000}

    ->

    < / style >

    <! - InstanceEndEditable - >

    < name meta = "description" content = "" >

    < name meta = "keywords" content = "" >

    < / head >

    < body bgcolor = "#ffffff" LEFTMARGIN = 0 RIGHTMARGIN = 0 TOPMARGIN = 0

    MARGINHEIGHT = 0 marginWidth = 0 onLoad = "MM_preloadImages('..)." "> < a name = top > < /a >

    < table border = "0" cellpadding = "0" cellspacing = "0" width = "750" >

    < b >

    < td valign = top width = 197 >

    "" < img src = "... / pictures/house.jpg ' width = height 197 = 116 ="Law Office of Marilyn Sullivan"alt > < table >

    "" < td valign = top width = 433 > < img src = "... / pictures/logotype.gif" 433 height = width = 116 = "Law Office of Marilyn Sullivan" alt > < table >

    "" < td valign = top width = 120 > < img src = "... / pictures/tiffany.jpg ' height = 116 ="Law Office of Marilyn Sullivan"alt > < table >

    < /tr >

    < b >

    "" < td colspan = 3 valign = top > < img src = "... / images/tagline.gif" width = 750 height = 22 = "Law Office of Marilyn Sullivan" alt > < table >

    < /tr >

    < /table >

    < br >

    < table LEFTMARGIN = 0 RIGHTMARGIN = 0 TOPMARGIN = 0 MARGINHEIGHT = 0 marginWidth don't is 0 border = "0" cellpadding is "0" cellspacing = "0" width = "740" >

    < b >

    < td width = 196 valign = top >

    < table border = "0" cellpadding = "0" cellspacing = "0" width = "196" >

    "<!-fwtable fwsrc ="navigation.png"fwbase =" homepage_final_1d.gif "fwstyle ="Dreamweaver"fwdocid ="742308039"fwnested ="0"->

    < b >

    "" < td > < a href = "... / shared_ownership/index.html" Mm_swapimgrestore; "onMouseOver =" MM_swapImage ('equity_sharing', ",'... /images-NAV/shared_f2.gif',1)" > < img name = "equity_sharing" src =""... /images-NAV/Shared.gif "width ="196"height ="25"border ="0"alt ="Equity sharing"> < /a > < table >"

    < /tr >

    < b >

    "" < td valign = top > <!-InstanceBeginEditable name = "Equity subNav"--> < a href = "... / rent_to_own/How_it_Works.html ' class ="style1 leftlink"> < img src =" images/spacer.gif"width = 1 height = 3 > < /a > <!-InstanceEndEditable--> < table >"

    < /tr >

    < b >

    "" "< td > < a href ="... / rent_to_own/index.html "Mm_swapimgrestore" onMouseOver = "MM_swapImage ('Lease_option ',", '... /images-NAV/rent-to-OWN_f2.gif',1) "> < img src =" "... /images-NAV/rent-to-Own.gif" alt = "Lease Option" name = "Lease_option" width = "196" height = "25" border = "0" > < /a > < table > "

    < /tr >

    < b >

    < td valign = top > <!-InstanceBeginEditable name = 'Hiring subNav'->

    < ul class = "ul-leftlink" >

    "" < a href = "... / rent_to_own/How_it_Works.html" class = "leftlink" >

    HOW IT WORKS < /a > < br >

    "" < a href = "... / rent_to_own/Sample_Transaction.html" class = "leftlink" > SAMPLE TRANSACTION < /a > < br >

    "" < a href = "... / rent_to_own/Do_it_Yourself.html" class = "leftlink" > < /a > < br > DO-IT-YOURSELF

    "" < a href = "... / rent_to_own/Finding_a_Partner.html" class = "leftlink" > FIND A PARTNER < /a > < br >

    "" < a href = "... / rent_to_own/FAQ.html" class = "leftlink" > FAQS < /a > < br >

    < Br > PRODUCTS

    "" < a href = "... / rent_to_own/fees.html" class = "leftlink" > < /a > < br / > FEES

    < br >

    < /ul >

    <!-InstanceEndEditable--> < table >

    < /tr >

    < b >

    "" "< td > < a href ="... / for_sale/index.html "Mm_swapimgrestore" onMouseOver = "MM_swapImage ('Sale by Owner',",'... /images-NAV/sale_by_owner_f2.gif',1) "> < img src =" "... /images-NAV/sale_by_owner.gif" alt = "Sale by owner" name = "Sale by Owner" width = "196" height = "25" border = "0" > < /a > < table > "

    < /tr >

    < b >

    < td valign = top > < img src = "images/spacer.gif" width = 1 height = 1 > < table > "

    < /tr >

    < b >

    < td valign = top > <!-InstanceBeginEditable name = "ForSale subNav"--> < img src = "images/spacer.gif" width = 1 height = 1 > <!-InstanceEndEditable--> < table > "

    < /tr >

    < b >

    "" "< td > < a href ="... / loan_workout/index.html "Mm_swapimgrestore" onMouseOver = "MM_swapImage ('short sale',",'... /images-NAV/Loan-WORKOUT_f2.gif',1) "> < img src =" "... /images-NAV/Loan-Workout.gif" alt = "short sale" name = "short sale" width = "196" height = "25" border = "0" > < /a > < table > "

    < /tr >

    < b >

    "" < td valign = top > <!-InstanceBeginEditable name = "short_sale subNav"--> < img src = "... / images/spacer.gif" width = 1 height = 3 > <!-InstanceEndEditable--> < table >

    < /tr >

    < b >

    "" "< td > < a href ="... / Testimonials/index.html "Mm_swapimgrestore" onMouseOver = "MM_swapImage ('Blog '", '... /images-NAV/blog_f2.gif',1) "> < img src =" '... /images-NAV/blog.gif ' alt = 'blog' name = 'Blog' width = "196" height = "25" border = '0' > < /a > < table > "

    < /tr >

    < b >

    "" < td valign = top > <!-InstanceBeginEditable name = 'blog subNav'-> < img src = "... / images/spacer.gif" width = 1 height = 3 > <!-InstanceEndEditable--> < table >

    < /tr >

    < b >

    "" < td > < a href = "... / products/index.html" Mm_swapimgrestore; "onMouseOver =" MM_swapImage ('products', ",'... /images-NAV/products_f2.gif',1)" > < img name = "products" src =""... /images-NAV/Products.gif "width ="196"height ="25"border = '0' alt = 'Products' > < /a > < table >"

    < /tr >

    < b >

    < td valign = top > <!-InstanceBeginEditable name = 'SubNav products' - > < img src = "images/spacer.gif" width = 1 height = 2 > <!-InstanceEndEditable--> < table > "

    < /tr >

    < b >

    < td valign = top > < img src = "images/spacer.gif" width = 1 height = 1 > < table > "

    < /tr >

    < b >

    "" < td > < a href = "... / contact/index.html" Mm_swapimgrestore; "onMouseOver =" MM_swapImage ('contact' ",'... /images-NAV/contact_f2.gif',1)" > < img name = "contact" src =""... /images-NAV/contact.gif "width ="196"height ="25"border ="0"alt ="Contact Us"> < /a > < table >"

    < /tr >

    < b >

    < td valign = top > <!-InstanceBeginEditable name = "Contact subNav"--> < img src = "images/spacer.gif" width = 1 height = 3 > <!-InstanceEndEditable--> < table > "

    < /tr >

    < b >

    "" < td > < a href = "... / index.html" Mm_swapimgrestore; "onMouseOver =" MM_swapImage ('home', ",'... /images-NAV/home_f2.gif',1)" > < img name = 'home' src =""... /images-NAV/Home.gif "width ="196"height ="25"border ="0"alt ="Homepage"> < /a > < table >"

    < /tr >

    < /table >

    < table >

    < td width = "544" valign = top >

    < table width = 96% cellpadding = 0 cellspacing = 0 border = 0 align = center >

    < b >

    < td valign = top class = "16" > <!-InstanceBeginEditable name = "content area"->

    < p >

    < table width = "150" border = "0" cellspacing = "0" cellpadding = "1" align = "right" bgcolor = "#660066" >

    < b >

    "" < td > < img src = "... / images/hdr_whats_new.gif" width = "150" height = "16" > < table >

    < /tr >

    < b >

    < td >

    < table width = "" 100% "border ="0"cellspacing ="0"cellpadding ="1"bgcolor ="#FFFFFF">"

    < b >

    < class = 'daily-padding' td valign = "top" >

    < p align = "center" > < b > Article in the Wall Street Journal < /b > < / p >

    < p align = "left" > Marilyn was interviewed for an article

    on equity sharing. "< a href ="... / shared_ownership/articles.html "> click on"

    here for the article. < /a > < /p >

    < p align = "center" > < b > can't sell? Rental option. < /b > < / p >

    < p align = "left" > Marilyn has created the Movated market

    Lease option as the answer to the real estate crisis.

    "< a href ="... / products/index.html "> click here for details." < /a > < /p > < table >

    < /tr >

    < / table > < table >

    < /tr >

    < /table >

    < p > Marilyn D. Sullivan is a lawyer and author, real estate developer

    Broker known nationally as the guru of sales creative and elected best

    Lawyer in his locale. Real estate is its lifeline and equity

    Sharing agreements and lease Option contracts are his specialties.

    She wrote 5 books of real estate and has travelled the country sharing

    his expertise on national television, including of Good Morning America, by

    radio and print. < /p >

    < p > since 25 years, Marilyn gave us the strategies to go

    beyond the conventional real transaction. She is a supporter of manufacturing

    the best of real estate, not only purchases and sales assets

    them, but relying on them for optimal operation. < /p >

    < p > first of all she gave us equity shares as a way to maximize profits and

    tax deductions through the sharing of property and obligations imposed.

    More recently, it has redefined the rental Option to respond to the

    real estate slump 2008, introducing the Option motivated rental market.            < /p >

    < p > in California, it facilitates the sale of real estate for sale by owner

    for a low fixed price. It also provides protection of assets by offering

    Training of the limited liability company to protect personal assets

    passive real estate related. < /p >

    < p > her collection of services provides the real estate owner

    a versatile to make the most of the property toolbox and

    to protect his personal real estate related responsibility. < /p >

    < p > not only no Marilyn believe in creative strategies, she believes

    in personal empowerment. She shares her own personal legal tools

    and forms with you so you can enter your own equity sharing

    Agreements and contracts of lease Option - in all the States of the union.

    It also gives you the tools to form your own California Limited

    SARL. "These tools are available by clicking on < a href ="... / products/index.html "> here < /a >."

    Check out the Blog of Marilyn, soon, to better understand and

    help of our real estate guru. < br >

    < br >

    < /p >

    < p align = "center" > < a href = ".. " http://www.msullivan.com/testimonials/index.html "> click here for reports < /a > < /p > .

    <! - InstanceEndEditable - >

    < hr noshade class = "top" > < div align = right class = "toplink" > < a href = "#top" > top of page < /a > < / div >

    < p > < /p > < table >

    < /tr >

    < /table >

    < table >

    < /tr >

    < /table >

    < script type = "text/javascript" >

    var (("https:" == document.location.protocol) = little? " ") https://SSL ." : " http://www .");

    document. Write (unescape ("% 3Cscript src ='" + little + "some google-analytics.com/ga.js type = ' text/javascript' %3E%3C/script%3E"));))

    < /script >

    < script type = "text/javascript" >

    var mouseover = _gat._getTracker("UA-5135880-1");

    pageTracker._trackPageview ();

    < /script >

    < / body >

    <! - InstanceEnd - > < / html >

    The page that you have demonstrated is linked to the toplevel.dwt' as can be checked on your first line of code, namely

    Template="/templates/toplevel.dwt".

    Any changes you want to make to your document are possible only in the said model.

    I've never used nested models and I would strongly encourage you to do the same, they are very difficult to maintain.

    Better to use server side includes (SSI) SSI as by SSI: the command Include or, if you are using PHP, PHP 5 include and require

    As a side note, it is advisable to provide a type of document at the beginning of the document. See here the HTML doctype declaration

  • Anchor to return to the same line on the previous page

    Hello

    I saw 4 or 5 posts on this subject, but none of them does not seem to work for me.

    Here's what I would do:

    I use an interactive report that contains an overview of the tasks and the information about these tasks. In the report, there is a column "Edit task" where users can click to change several fields for the task.

    When the user clicks on the 'Edit' task - link, another page (of type 'Dynamic Form') is opened where the user can make adjustments and then save them.

    When the user clicks 'Save' (or 'Cancel', by the way) on the edit page, I want to redirect them to the previous page with the overview of all the tasks, but I want the page to move in roughly the same place as when the line where users you click on 'Special Edition' is located. So if I change a task that is in the middle of the report, I want to return to the middle of the report when the user has finished its adjustments.

    I have seen that it is possible using the anchors, but have not found a position that has worked for me.

    I think that there are three elements to make something with to operate:

    -The "Edit job" - link in relation to the overview of all tasks

    -The button 'Cancel' or 'Save' on the edit page

    -The page with the overview of the tasks that he knows which row to access

    Our end-users really want this feature, so any help would be appreciated.

    I run on APEX 4.2.

    Thanks in advance for your answers.

    Kind regards

    NDG

    Was the solution after several hours and it is actually not as difficult as it seemed during these hours.

    So for those looking for the way to do it, here it is:

    Make an anchor point in the query of your report which shows the overview of the tasks (or whatever the report will show to you, I use tasks for example) like this:

    Select..., task_code, '', 'Special Edition' task_id of task

    To the page with the overview of the tasks, change the Page attributes-online display attributes-online update of the slider to "don't focus of cursor.

    View the type of the column with the anchor: Standard report column

    It will not work if the column type is 'hidden' or if the column is not in the "selected columns" in your report ("Actions"-online "Select columns").

    'Special edition' is the link that I created to go to the edit form, this link goes task_code as an attribute to identify the unique tasks (do not know if the task_id column will work, I do not use it as ID to go to the edit page, I use the task_code.) It probably won't work with this task_id-column, but if not, create an another task_id column without the anchor and use that one to pass it as an attribute).

    To the page containing your form for editing tasks create the buttons/send-Cancel:

    -"Action when the user clicks on the button ' value 'redirect to the URL."

    -the "target URL" value: f? p = & APP_ID.: 11: & SESSION. : & DEBUG. #& P16_TASK_ID. (include the '. ' at the end)

    Where 11 there is the page you want to link to, and #& P16_TASK_ID. is the item that you will use to access the respective line in your report.

    There might be other ways to do it, but it works for me on APEX 4.2.

    Good luck.

  • Multiple selection query to view the selected line

    Hi all

    I have a requirements make multiple selection of a region in the table and need to display the values of the selected line in the page.

    so I'm able to multiple selection of the table, but all when trying to print the values, it is still only printing selected values of line one not several.

    the code I use to print several rows below the selected values.

    for (int i = 0; i < fetchedRowCount; i ++) {}
    Rowi ABCEOViewRowImpl =
    (ABEOViewRowImpl) selectIter.getRowAtRangeIndex (i);

    If (rowi! = null) {}
    If (Y".equals (rowi.getReprint ())) {" "}
    for (int j = 0; j < fetchedRowCount; j ++) {}
    String srnum = rowi.getSerialNumber ();

    throw new OAException ("after Srno" +)
    srnum,
    OAException.INFORMATION);
    }
    }
    }
    }

    where fetchedrowcount - no lines in the region of the table
    Here srnum is printing only one value.

    Please guide me where to check this problem.

    Thank you
    Deb

    Hi Deb,

    Unable to get the requirement. Why the second for loop... ?

    Still, the OAException must be thrown exception during the first use that meets the condition.

    Please try to use "srnum" in tabular or use it to add all the required values in the for loop and finally throw the exception.

    Concerning
    Sanujeet

  • Enter multiple lines in a text box &amp; display the upper left corner

    I have forms where a large amount of comment might be entered in the form - perhaps an entire page.  When I create a large text box and allow multiple lines, the currently entered text displays in the center of the box and expands to fill the box, upwards or downwards to the Center.  Is it possible to have force the text you entered appear in the upper left corner of the box and flow down.  It's a box that people have written, is how they would do it.

    Thank you very much for the help.

    Click on the object and the palette of fonts (maybe it's not visible - you can activate in the window menu) click the paragraph on this menu, you can choose the text alignment.

    Paul

  • How to get the fixed lines per page? really Urgent!

    I am facing problem with the fixed lines per page. The footer (Subtotal) block moves upward, leaving space at the bottom when the number of items is lower.

    I have a two groups: one for the KIT and the KIT COMPONENTS. When I'm generation report for KIT only ITEMS I'm attaches footer using the

    < name of xsl: variable = "no_of_lines_per_page" select = "number (30)" / >
    <? for-each@section:Q1? >
    < xsl: variable xdofo:ctx = 'incontext' name = "inner_group" select=".//Q2"/ >
    <?-foreach: $inner_group? > <? If: (position () - 1) mod $no_of_lines_per_page = 0? >
    < name of xsl: variable = "first_rec" xdofo:ctx = 'incontext' select = 'position ()' / >

    but when I try to generate the report in combination with KIT COMPONENTS together, I am not able to set the number of lines per page. The footer is allocated to the next page. Now I Q2 and Q3 where Q2 makes Parent Kit and Q3 is child components Kit.

    How can I get it fixed lines per page for Q3 in regards to the Q2?

    I would appreciate if someone can answer me quickly.

    You have sent the updated RTF.

Maybe you are looking for

  • Photosmart HP 6520: HP Photosmart 6520 - error message when you try to use the apps

    I can't access is more apps on my Photosmart HP 6520.  I get the error message "error connection server - 1". I don't know if this problem just since I recently changed from a Windows PC on a Mac. I very rarely use the apps, so I don't know when it s

  • Record streaming audio on Satellite L30

    I again L30 with vista. I would like to record audio streaming, but programs (Total Recorder and CDex 1.70 etc..) I used on my old XP desktop don't work. They cannot 'see' the audio source. I wish I had advice or a pointer to a web good tutorial on a

  • Keithley GPIB USB HS-6487

    Dear all I want to us NI GPIB HS to control keithley 6487. Can I use the software provided by the manufacturer of Excelinx, which is in my opinion, written in C++. Is this possible or I need a player of LabView?

  • How to apply the touch screen for Samsung SyncMaster 204BM

    Original title: Samsung SyncMaster 204BM I want to apply the touch screen and the narrative and I want to know if this screen and Iam from the computer using portable Thank you Nora

  • BlackBerry smartphones does not allow voice notes Delete?

    Hello I have the Storm 9530 For some reason he isn't back note me to delte my voice, I tried through the media/voice note / delete option and past the other route to go to applications/voice note recorder/view voice notes / remove option down... both