Dynamic link in cfgid column

Hi,
I have the following:
<cfquery name="lijstA" datasource="">
SELECT *
FROM dev
ORDER BY dev_typenr, dev_volgnr
</cfquery>
cfgridcolumn
href="../data_nor.cfm?dev_id=<cfoutput>#lijstA.dev_id#</cfoutput>"
target="blank"
NAME = "dev_volgnr" header="barcode nummer" width="100"
However this doesn't work.... it always gives the same value
in the URL.dev_id...
Is there a possibility to get this working?
Thank you in advance,
Kabbi

Interactive Report or Classic?
I presume it is "multi-row" and not single row as you mention column.
Regards,

Similar Messages

  • Dynamic Link Column Based on Value

    I'm using Apex version 4.1.
    This is driving me nuts, I can't get it to work. I'm trying to create a dynamic link on a column (in a SQL report) based on the value. Here's my query:
    SELECT STRUCTURE_ENTITY_ID AS "Market ID",
    Structure_entity as "Market Name",
    CASE WHEN NVL2((select 'A' from PC_PAYROLL_DISTRIBUTION PD
    WHERE PROCESSING_YEAR = SUBSTR('2011-08',1,4)
    AND PROCESSING_MONTH = TO_NUMBER(SUBSTR('2011-08',6,2))
    AND PD.OPS_MARKET = SE.STRUCTURE_ENTITY_ID
    AND ROWNUM = 1),'Ready','Not Ready') = 'Ready' THEN '' ||'' ELSE 'Not Ready' END AS Status
    FROM STRUCTURE_ENTITY SE
    So when the value in that CASE statement equals 'Ready' then I need it to show the word Ready (in the Status column) as a hyperlink, otherwise it needs to show 'Not Ready' in normal text that's not clickable.
    The URL string I have in there DOES pick up the correct values for my parameters, but it stilll appears in the report as the whole string, and it's not clickable. Any help would be greatly appreciated!
    Thanks,
    Greg

    I see an a instead of <a and no </a> in this code.
    Oh, I guess your {a is <a ... B-)  Still no end tag, though.
    Edited by: InoL on Oct 7, 2011 2:27 PM                                                                                                                                                                                                                                                                                                                       

  • Creating dynamic link in column

    Hi All,
    I am using Jdev 11.1.1.2.0 . I am getting few urls that is comma seperated. I need to seperated different URL from the value and create no of link or golink equal to no of the value.Please suggest me how to do this.
    I need to create dynamically link and put diffent url value in destination property of Link
    How can i create dynamically link .

    I created a sample app for this. Please see if it is helpful.
    http://adf-use-cases.googlecode.com/files/LinkApp.rar
    I am displaying all the employees(first name) in a department as link. For now, the link is pointing to google. You can change according to your requirement.
    The code is written in DepartmentVORowImpl.java
    +public String getEmployeeName() {+
    RowSet rowSet = getEmployees();
    RowSetIterator ritr = rowSet.createRowSetIterator("new");
    StringBuilder formattedLink = new StringBuilder("");
    String requestURL = "http://www.google.com";
    String hrefPrefix = "<a href='";
    String targetProp = "' target='_blank' class='xfd' >";
    String hrefSuffix = "</a>";
    String employeeName = null;
    +while (ritr.hasNext()) {+
    Row row = ritr.next();
    formattedLink.append(hrefPrefix).append(requestURL).append(targetProp).append(row.getAttribute("FirstName")).append(hrefSuffix).append(" | ");
    ritr.next();
    +}+
    ritr.closeRowSetIterator();
    rowSet.closeRowSet();
    if (formattedLink != null && formattedLink.length() > 0)
    employeeName =
    formattedLink.substring(0, formattedLink.lastIndexOf(" | "));
    return employeeName;
    +}+

  • Creating a Link on the Column Heading

    Good afternoon,
    I know with reports, you can create a link for each cell in the report attributes section. My question is it there's any way to create a link for the column header without hard coding it into the query that generating the results.
    Thanks in advance,
    Ivan

    Ivan,
    If you are using the classical reports, you have the option of creating column header using pl-sql block which will be dynamic. Thanks
    Regards,
    Manish

  • Dynamic Table with two columns

    Hi!
    i have to create a Dynamic Table with two columns having 5-5 links each with some text...... three links r based on certain conditions....they r visible only if condition is true...
    if the links r not visible in this case another links take it's place & fill the cell.
    links/text is coming from database.
    i am using Struts with JSP IDE netbeans
    Please help me
    BuntyIndia

    i wanna do something like this
    <div class="box_d box_margin_right">
              <ul class="anchor-bullet">
              <c:forEach items="${data.faqList}" var="item" varStatus="status"
                        begin="0" end="${data.faqListSize/2-1}">
                        <li>${item}</li>
                   </c:forEach>
              </ul>
              </div>
              <div class="box_d">
              <ul class="anchor-bullet">
              <c:forEach items="${data.faqList}" var="item" varStatus="status"
                        begin="${data.faqListSize/2}" end="${data.faqListSize}">
                        <li>${item}</li>
                   </c:forEach>
              </ul>
              </div>
    wanna divide table in two columns....if one link got off due to condition other one take it's position...
    I have created a textorderedlist
    Bunty

  • Dynamic link with an if statement

    Hi there
    I'm trying to combine an if statement to a dynamic link.
    If there is a value in a column, then display the link.
    For now I have come up with this for the if statement.
    If the column is not empty, then echo out a B to let the user know there is a value there.
    <?php if (!empty($row_rs_as_2014['scan'])) { echo "<bold>B</bold>";} ?>
    So my question is this, how do I echo out the url, making the "B" here a dynamic link?
    I have tried splitting up the brackets with php tags to implement the link, but since I'm a newb, that went south..
    Hoping for tips!
    Chris

    <?php if (!empty($row_rs_as_2014['scan'])) { echo "<b><a href='".$row_rs_as_2014['scan']."' class='button'>B</a></b>";} ?>
    Explanation:
    You can put a variable within double quotes but not single quotes, unless the single quotes are within double quotes, but you cannot reference the array element that way, so you either have to convert it to a variable like this. . .
    $scan = $row_rs_as_2014['scan'];
    . . .or use the period as a concatenation operator, as I have done above. So the following would also work:
    $scan = $row_rs_as_2014['scan'];
    if (!empty($scan)) { echo "<b><a href='$scan' class='button'>B</a></b>";}
    If you are going to do much with PHP, then read PHP Solutions by Powers

  • Dynamic links to files

    Hi,
    i am working on a page which should dynamically link to a pdf file and a window media file.
    I have designed the multiple upload form and the page that displays all the records in the database.
    The issue is how do i link particular pdf/video to corresponding files so that on click pdf it opens the pdf file and on click the window media it opens a browser that displays the corresponding video file.
    Trusting you for a solution.
    Regards
    Yomi

    Hi Yomi,
    you´ll need to have PHP extract the file suffix
    (usually a period followed by 3 chars, like .pdf or .wmv) from the recordset value which represents the "file" column, and establish a PHP if/else condition which returns different links depending on the result -- the PHP function "substr" (http://de2.php.net/substr) will be of great help, example:
    if (substr(strtolower($row_rsqueryname['column_name']), -4) == ".pdf") {
    display link to the PDF file
    else if (substr(strtolower($row_rsqueryname['column_name']), -4) == ".wmv") {
    display link to a popup window playing the wmv file
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Dynamic links in a table submitting my search...

    I have an input box to type a search, a button to submit the search, and a dynamic table with dynamic links added to it that are bound to a method. Clicking a link loads a doc depending on the id of the link. The input box and search button are in their own virtual form.
    Now the problem...
    clicking on a hyperlink will resubmit the search before loading the doc. It seems impractical to add all of the links (could be thousands) to a virtual form...
    Is there anything I can do to correct this? I would like clicking a link to only load a doc..not also re execute the search.
    - Mark

    I am not sure why, but the hyperlink has to be in its own virtual form. It is not enough to not just have it not be in the other virtual form.
    I am not really sure what you mean by a dynamic table. Do you mean that you (1) add the columns to the table programmatically, or are you (2) using a Table component that is bound to data.
    If (2) then all you have to do to put all the hyperlinks in a separate virtual form is to right-click the hyperlink component in the outline window and choose virtual forms. Add a new form and set the Submit column to yes.
    if (1) then you maybe manually editing the virtual forms configuration in the JSP file will work:
    <ui:form binding="#{Test.form1}" id="form1" virtualFormsConfig="virtualForm1 | textField1 | button1 , virtualForm2 | | table1:tableRowGroup1:tableColumn1:hyperlink1">

  • Firedox did a restart, now it wont open i get the message The procedure point js_UnwrapObjectAndInnerize could not be located in the dynamic link library

    firefox did a restart now it wont open, i get the following message,
    The procedure point js_UnwrapObjectAndInnerize could not be located in the dynamic link library
    have tried system restore but this didnt help

    Do a clean reinstall and delete the Firefox program folder (C:\Program Files\Mozilla Firefox\) before reinstalling a fresh copy of Firefox.
    *http://kb.mozillazine.org/Installation_directory
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 15.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible, to cleanup the Windows registry and settings in security software.
    *Do NOT remove personal data when you uninstall your current Firefox version, because all profile folders will be removed and you will also lose your personal data like bookmarks and passwords from profiles of other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other profile data are stored in the Firefox Profile Folder and won't be affected by an uninstall and (re)install, but make sure that "remove personal data" is NOT selected when you uninstall Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Dynamic Link does not open Project on 2nd computer

    Has anyone run into this situation?
    Creating a  Premiere ver CS6 project on the mac and creating a dynamic linked comp in Premiere to a After Effects comp works well until the project file is shared with another computer that did not create the project.
    When the files are opened on another MAC, same CS6 version the Premiere project will not open. It cannot find the linked comp. It will NOT open the project file what so ever!   I go back to the original computer that created the project and render out the AE linked comp files and import them as movies by replacing the dynamic linked comp files then resave the project. (Note: I have not deleted the comp files in the project, only on the timeline). I then try to open the files from the other computer the Premiere project will still NOT open.  Again, back to the original computer that created the file, open the project and DELETE in the project pane any files that are AE linked comp files, even though they are NOT being used now in the timeline, resave the project, now the project will OPEN on the other computer.
    All these files are on a standalone portable drive, the Premiere project scratch files are all specified to be on this standalone drive as well when the project is opening. It seems if any file is a "Linked comp file" and is not opened on the computer that created it, it will not open the project file. It does not act like a misplaced, missing file that it will ask you to located the file, or will still open the project regardless if it cannot find the file(s).
    if your sharing project files or getting a new computer and try to open up a project file from the previous computer with linked comps you will NOT be able to do so.  This has been my experience so far with CS6 on the Mac. 
    Regards
    Steve

    Please don't double-post.  Duplicate post deleted.

  • Dynamic Link... My Question Disappeared?

    I tried to import a video to Photoshop CS6 Extended, in order to export it as an animated gif.
    I posted a question about it here, it appeared in 'trending' and then disappeared ! Did a moderator move it?
    My question was... when I tried to import I got a message error to say "Dynamic Link missing...'
    Can anyone help?

    Your question was moved over to the Photoshop forum here http://forums.adobe.com/message/4413189#4413189.
    You can always find all of your posts via Your Stuff > Discussions from the menu. So in your case http://forums.adobe.com/people/KieranBrennanDublin?view=discussions.

  • How to set up a column link to the column attribute in a report

    Hi All
    I have 6 column in a sql report in a page, column names are (Devicename devicerole,from etc).
    Now i need to set a link to this column and this need to link to the another page
    Thanks & Regards
    Srikkanth.M
    Edited by: Srikkanth.M on Apr 6, 2011 6:17 PM

    Hi
    Read this and follow it...
    >
    Go to the report attributes, then click on the edit link button by the side of the column you want to be a link to get to the column attributes.
    >
    So...
    1. Go to edit the page that contains your report.
    2. Click on the report region as if you were going to edit the report query.
    3. Click the Report Attributes tab.
    4. Click the button at the side of the column in question.
    5. Scroll down to the Column Link section and fill in the details.
    I really can't put it much more simply than that...
    Cheers
    Ben

  • What does this message mean on my PC " the procedure entry point sqlite3_wal_checkpoint could not be located in dynamic link library SQlite3.dll.

    Why does this message pop up on my PC after i start up " (AppleSyncNotifier.exe-Entry Point Not Found ) the procedure entry point sqlite3_wal_checkpoint could not be located in dynamic link library SQlite3.dll. ? What can I do to fix this problem ?

    Found this several months ago when I updated ITunes. I don't know why they still haven't fixed this, but I had to do this again yesterday 10/13/2011 when I updated.
    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the SQLite3.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Reboot and see if all is well
    In case that your OS is Windows 7 (64 bit)
    1. Open windows explorer, go to location C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    2. Copy file "SQLite3.dll"
    3. Open new windows explorer, to to location C:\Program Files (x86)\Common Files\Apple\Mobile Device Support
    4. Paste file "SQLite3.dll" to the location.
    5. Reboot your computer, it should not display that message, it should be clear.

  • Adobe Premiere Pro and After Effects CS5.5 Lagging Horribly with Dynamic Link

    I just bought a brand new computer. It is a beast
    Windows 7 64-bit
    Intel i7-980 6 cores with HT = 12 CPU cores
    Nvidia GTX 570HD 1280mb 328 bit
    120gb SSD sata 3
    600 gb Velociraptor drive 10000rpm
    8gb DDR3 1866MHZ ram
    So you would think I would get no lag. But for some reason, when I edit in premier pro or after effects, especially when I use dynamic link with premiere and after effects. It lags realllllly badly. I am talking about 5fps and I have to pause and wait like 20 secs then hit play again to get 5 secs of smoothness and then the laggyness returns. I am not even using heavy footage. It is footage off of a Canon 5D Mark II h.264. I tried messing around with all the settings but I cannot get anywhere. Anyone know what the problem might be? I don't have any other programs running since I just installed these. This lag is really holding me back and I cannot edit properly because of it.

    Your memory is ill configured, since you are using it in dual channel mode instead of triple channel mode and 8 MB is about bare minimum. You would be better off if you were to increase memory to 24 GB. Secondly, your disk configuration is the absolute minimum requirement, so adding a couple of disks will help performance as well.
    I am not even using heavy footage. It is footage off of a Canon 5D Mark II h.264
    Mistake. It is one of the most demanding codecs on the market. Look here: Adobe Forums: System requirements for CS5
    You could try the PPBM5 Benchmark to see how well your setup performs.

  • After Effects CS5.5 will not open a Dynamically Linked Premiere Pro sequence in the comp. window

    Hi all,
    I'm trying to export a Premiere Pro sequence which is in 2K and the footage has been shot as RED 5K. Adobe Media Encoder will simply not work as I am having the quite widely discussed issue where it will just 'hang' at certain points and not complete the export.
    The most popular solution to this problem is to export via the Render Queue in After Effects instead. However, therein lies the problem.
    I go onto After Effects. Choose File -> Dynamic Link -> Import Premiere Pro Sequence.
    The box pops up, I choose the Premiere Pro Project File then select the sequence I want to export. It then appears in the After Effects project panel window like so:
    However - when I try and drag this to a new composition window, one of two things have happened. Either A) nothing happens (literally, NOTHING changes) or B) as the following example shows, it seems to add it to a new composition, but the video is entirely black. I have tried rendering it and it just produces a black video.
    The other thing people seem to suggest is to just import the entire Premiere Pro sequence into After Effects. I've tried this, but any titles I have added in PP force the video to fade out then back in, in the place where the title should be?? So I can't export the video this way either.
    My system is as follows:
    Thanks massively in advance for any help that is provided!

    This is months old but I'm now having the same problem with AE and Premiere CS6 after updating last night: Dynamic linked sequence shows up in the project window in AE and even plays video if previewed, but will not drag or alt-drag into any comps, including a new comp (makes a new comp with matching settings, but empty).
    Furthermore, I do actually have an earlier version of the same sequence placed in one of my AE comps, which I think was done using the same steps just prior to updating the apps last night. Did this break?
    I'm a little concerned since the biggest reason I'm trying to use premiere is to eliminate the exports when adding graphics in AE.

Maybe you are looking for

  • How to extract a ddl from a dump database.

    Hi I'm new to Oracle. I got a dump file from a Oracle database. I need to get from it the ddl to recreate the database on another Oracle server. How do i do it? Please show me details steps how to do it. Thanks.

  • DVD ROM Empty

    I'm new to apple and idvd. I am making a dvd of some slideshows I made in iphoto, I have the box checked for "Always add original slideshow photos to DVD-ROM" in idvd preferences. I imported the slideshows into idvd, and checked out the dvd-rom file,

  • Mitigation controls - mitigating reports

    Hi all, I have a question regarding the frequency field in Reports tab of mitigating controls (RAR). What is the purpose of the frequency field. If you set this to 1, does that mean that the control is to be executed daily? Does the system send a mai

  • Make netatalk on FreeBSD authenticate against OD?

    Hello! I recently set up a ZFS file server running FreeBSD. I'm sharing the pool with netatalk, and it works just fine. What I really want to get working, though, is authentication against our central Xserve G5 running Leopard server. All of our serv

  • Change forecolor of one row in a matrix

    Hi, can I change the color of the text in a row of a matrix? I've tried with matrix.column.item("idcol").forecolor = 555555 In this mode I change the color of all the row in column idcol. I would like to change the color to one of the row of the colu