Results 1 to 6 of 6

Thread: Tornado - Nav Items

  1. #1
    Join Date
    Jul 2004
    Posts
    39

    Tornado - Nav Items

    I had a question about adding a button. I am able to add a button, but I want to add the unique pin identifier to the url. I know in MagicCell You can use ^0^, #0#, etc, etc... but can you pull the highlighted record's number in to a URL using a button?

    Example:
    User Clicks on record in the grid.
    User Clicks custom button.
    (Unique identifying number of highlighted record gets appended to URL)

    Thank You,
    John M

    *****************************
    UPDATE

    I used SelRecPTR using the Tornado.GetData() function... but there is a small problem.

    Get_SelRecPTR only works after the page refreshes (AKA it is one click behind). If I do a response.write, it won't append the info to the URL if the user wanted to use the first record already highlighted in the grid.

    Is there a way to have GD.Get_SelRecPTR to run once before each page refresh? I tried inserting it after the ASPdbNET() but it doesn't work.
    ******************************
    Last edited by johnmooney; 01-14-2005 at 11:00 AM.

  2. #2
    Join Date
    Oct 2002
    Posts
    933
    >>...I want to add the unique pin identifier to the url.

    Wher is this "pin identifier"?

    You want to click a button adn get the current record at th etop of the application - is that true?

    State the application and forget about the way to do it. Many time, there is a better way.


    FK

  3. #3
    Join Date
    Jul 2004
    Posts
    39
    it just uniquely identifies each database record, like a primary key.

    John

  4. #4
    Join Date
    Oct 2002
    Posts
    933
    So you want to append the record's key (a field) to the URL of th ebutton?

    FK

  5. #5
    Join Date
    Jul 2004
    Posts
    39
    yes,

    the selected record in the grid i want to append to the url so I can pass the record number to the next screen.

  6. #6
    Join Date
    Oct 2002
    Posts
    933
    Looking at the problem - The navigations can be displayed on the top or the bottom or both. So you do not know the selected record (in the user's side) when the navigation is displayed. In order to pass the value of the "cell" do it in the cell level using Magic cell. I'll look for an example in this aspect.

    Try this ->

    Dim X As New Tornado.z
    With X
    .dbQP = "U=4| S=2| D=Nwind| Q=employees| gdf=0,1,2,3| M=ty=Dh!SysInd=true| th=Pass URL"
    .dbGridMagicCell = "fi=0|mac=<A HREF='http://www.aspdb.com?F1=#0#'>#0#</A>"
    .ASPdbNET()
    End With

    FK

Posting Permissions

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