popup with optional parameters

(3 posts) (2 voices)
  1. shhedrick, Member

    I have several fields defined in a popup for editing. All of the fields, except the key (id), are optional. In the prior release, the popup would display. Just upgraded to 3.7 and now the popup does not display. It appears to flash by.

    partial report code: select 'dbr.report', 'sp_DBR_TDUpdate_LoadData', '[man]', 'popup', 'tdID=[id]',
    'man<=[man]',
    'afe<=[afe]',
    'req<=[req]',
    'stat<=[stat]',
    'xd1<=[xd1]',
    'xd2<=[xd2]',
    'xd3<=[xd3]',
    'xd4<=[xd4]',
    'xd5<=[xd5]';

    partial update routine:
    CREATE PROCEDURE sp_DBR_TDUpdate_LoadData( inLogin varchar(30), inIPAddress varchar(30), tdID bigint,
    man varchar(50),
    afe varchar(50),
    req varchar(50),
    stat varchar(50),
    xd1 varchar(50),
    xd2 varchar(50),
    xd3 varchar(50),
    xd4 varchar(50),
    xd5 varchar(50))

    By changing the "man" parameter to be non-optional, the popup displays.

    Any thoughts?

    Thanks,
    Scott

  2. myDBR Team, Key Master

    Add following parameter to the dbr.report call 'append=&i=1'. This will make myDBR ask the optional parameters even in the case where all parameters are optional.

    --
    myDBR Team

  3. shhedrick, Member

    Thanks. Looks like it is working fine now.

    Scott


Reply

You must log in to post.