GlideSysListControl - Scoped

  • 릴리스 버전: Australia
  • 업데이트 날짜 2026년 03월 12일
  • 소요 시간: 2분
  • The GlideSysListControl API provides methods that enable you to determine if the New or Edit buttons are displayed.

    GlideSysListControl - GlideSysListControl(String tableName)

    Instantiates a GlideSysListControl object.

    표 1. Parameters
    Name Type Description
    tableName String Name of the table

    GlideSysListControl - getControlID()

    Returns the sys_id for the control.

    표 2. Parameters
    Name Type Description
    None
    표 3. Returns
    Type Description
    String sys_id of the control
    var sysListCtrl = new GlideSysListControl("incident");
    var controlID = sysListCtrl.getControlID();
    gs.info(controlID);

    Output:

    91a807a60a0a3c74012113e28b47ca2e

    GlideSysListControl - isOmitEditButton()

    Returns true if the edit button is not displayed.

    표 4. Parameters
    Name Type Description
    None
    표 5. Returns
    Type Description
    Boolean True when the edit button is not displayed.
    var sysListCtrl = new GlideSysListControl("incident");
    var isOmitted = sysListCtrl.isOmitEditButton();
    gs.info(isOmitted);

    Output:

    false

    GlideSysListControl - isOmitNewButton()

    Returns true when the New button is not displayed.

    표 6. Parameters
    Name Type Description
    None
    표 7. Returns
    Type Description
    Boolean True when the new button is not displayed.
    var sysListCtrl = new GlideSysListControl("incident");
    var isOmitted = sysListCtrl.isOmitNewButton();
    gs.info(isOmitted);

    Output:

    false