You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register

Dependent dropdown not displaying value on Edit page because on-value-item-changed is not triggered

Summary:

Hi,

I'm working on an Oracle Fusion Service (Redwood UI) customization in Visual Builder Studio.

I have implemented dependent Project and Task dropdowns on both the Create SR and Edit SR pages.

Requirement

  • Project is the parent dropdown.
  • Task is the child dropdown.
  • Tasks are fetched based on the selected Project.

Current Implementation

Project Select: Template

<template id="sRProjectTemplate"> 

<oj-select-single label-hint="Project" data="[[ $variables.ProjectSDP ]]" item-text="ProjectName"    value-item="{{ $variables.SelectedProjectObject }}" on-value-item-changed="[[$listeners.selectValueItem]]"    value="{{ $value }}">

</oj-select-single>  </template>

Task Select

<template id="sRProjectTaskTemplate"> 

<oj-select-single label-hint="Task" data="[[ $variables.projectTasksSDP ]]" item-text="TaskName" value="{{ $value }}"    value-item="{{ $variables.selectedProjectTaskObj }}" on-value-item-changed="[[$listeners.selectValueItem2]]">

</oj-select-single>  </template>

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!