How can I successfully transmit the entire event during the (change) event binding with ng-select in Angular 14?

I'm working on Front end Code

  <ng-select formControlName="constituencyId" placeholder="Select Constituency" (change)='onContituencyChanged($event)'>                    >
                                      <ng-option *ngFor="let op of this.getAllConsituencies"  
                                      [value]="op.id"
                                      [attr.typename]="op.constituencyTypeName" > 
                                      {{op.code}} {{op.name}}                              
                                    </ng-option>
                                    </ng-select>

                                    <label>Constituency Name</label>

Now, let's see the Backend code

onContituencyChanged(evt: any) {
 
    console.log("targeted obj of constituency. " ,evt);
}

Currently, I am only extracting the value of the selected item instead of the complete targeted event.

My goal is to implement two operations with ng-select dropdown list in Angular - firstly, upon change, I wish to access the custom attribute added to the dropdown for some specific logic execution.

Answer №1

Give this a try:

For TypeScript, do the following:

myCustomSelect: CustomSelectComponent;


  @ViewChild(CustomSelectComponent) private set customSelect(
    customSelect: CustomSelectComponent
  ) {
    if (!customSelect) {
      return;
    }
    this.myCustomSelect = customSelect;
  }

Next, in your change event handler:

onSelectionChanged(event: any) {
if (event) {
      console.log('on selectionChange', this.myCustomSelect.filterInput.nativeElement); //this accesses the attributes of the selected element.
    }
}

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Error: string literal left incomplete with spaces only

I am attempting to run parameters from a JavaScript function, but I am encountering an issue with quotes when there is a white space present. This error specifically pertains to Mozilla: SyntaxError: unterminated string literal Below is the relevant p ...

Tips for addressing style issues within innerText

I am trying to use PrismJS to highlight HTML code, but the inner text function doesn't recognize line breaks (\n). <pre class="language-markup background-code"><code [innerText]="getHtmlCode()""></code> I have been working wi ...

Ways to make a chosen row stand out in an *ngFor loop?

Struggling to find a solution within Angular2 for setting a css class when selecting a row. I want to achieve this without relying on jQuery. <table class="table table-bordered table-condensed table-hover"> <thead> <tr> ...

Guide on creating multiple instances of vue-multiselect with a simple button click

I am trying to implement a vue-multiselect dropdown with the addition of a new dropdown upon clicking an "add more" button. However, I am currently unsure of the best approach to achieve this. Problem/Question: When adding 2 dropdowns, if the same option ...

Identifying differences in a Knockout view model

While it may seem like a simple question, is there actually a straightforward method to identify if there has been a change in any property of a knockout view model? ...

Angular 2 - Creating Your Own Validation Rules

Could someone please clarify the TypeScript syntax shown below for me? {[s: string]: boolean} This is the return type for a ValidatorFn in Angular 2. What exactly does the array: [s: string] represent? When creating my own custom ValidatorFn function, w ...

What could be causing the decrease in speed of my Three.js animation within Vue.js?

I attempted to replicate the impressive wave simulation from this CodePen link: https://codepen.io/cheekymonkey/pen/vMvYNV, using Vue.js. However, the animation seems to be running significantly slower when implemented in Vue.js. In my effort to recreate ...

Using Formik: When the initial value is changed, the props.value will be updated

After the initial props are updated, it is important to also update the values in the forms accordingly. export default withFormik({ mapPropsToValues: (props: Props) => { return ( { id: props.initialData.id, ...

Combine multiple arrays of JSON objects into a single array while ensuring no duplicates

Trying to combine two JSON arrays into one without duplicates based on date. The jQuery extend() function isn't doing the trick, so looking for an alternative solution that avoids nested $.each statements due to potential large dataset size... [ ...

Experiencing a lack of information in express?

Whenever I attempt to send a POST request (using fetch) with the body containing the state of the application, I receive an empty object on the server side. What am I doing wrong here? I should be receiving the object with the properties name, username, an ...

validating if Object may be either 'null' or 'undefined'

In the code snippet below, I am attempting to verify whether hostel.country.address is null: return hostel.country.address && hostel.country.address.internalEmployeeIdentifier !== null || hostel.country.address.exter ...

Angular 2 Element Selection: Dealing with Unrendered Elements

This form consists of three input fields: <div> <input *ngIf = "showInputs" #input1 (change)="onTfChnage(input2)" type="text"/> <input *ngIf = "showInputs" #input2 (change)="onTfChnage(input3)" type="text"/> <input *ngIf = "showInp ...

Enhancing Vue functionality with vue-class-component and Mixins

In my Vue project, I am using vue-class-component along with TypeScript. Within the project, I have a component and a Mixin set up as follows: // MyComp.vue import Component, { mixins } from 'vue-class-component' import MyMixin from './mixi ...

Combine bar and stacked bar charts on a single graph with morris.js

Can a combination of a stacked bar chart and a regular bar chart be created in morris.js? I have successfully generated a stacked bar chart using the following code: Morris.Bar({ element: 'bar-example', data: [ {x: '2011 Q1', ...

Retrieve information from a form in AngularJS without relying on two-way data binding

Utilizing two-way data binding, the code operates effectively. However, there is a stipulation - instead of using =, use <. Upon the initial launch of the application, the text inputs will contain predefined values. The objective is to enable users to ...

The appendComponentToBody function seems to be malfunctioning within Angular 2

I'm having trouble with the appendComponentToBody function in my code. I can't seem to figure out where I went wrong. Can someone please assist me in resolving this issue? Here is a link to see my code: https://stackblitz.com/edit/angular-axhgid ...

Automatically rehydrate an instance using Angular and JavaScript

REVISION Special thanks to Shaun Scovill for providing an elegant solution using lodash // Creating an instance and injecting server object - within the ChartService implementation below var chart = new Chart(serverChartObject); // Replacing ...

Tips for implementing events with AngularJS Bootstrap Colorpicker

I am having trouble understanding how events function with Angular Bootstrap Colorpicker. I have forked a Plunker from the developer's example. Unfortunately, there are no examples provided for using events. It would be great if events like colorpick ...

Building a Model Class with redux-orm and TypeScriptCreating a new Model Class with

I've been successfully using redux-orm with JavaScript, however, I'm facing issues when trying to convert my code to TypeScript. Even though I have already implemented the render() method in my Folder Model Class, the TypeScript transpiler is sh ...

Leverage the `dispatch` hook within a useEffect function

When it comes to triggering an action upon the React component unmounting, I faced a challenge due to hooks not allowing the use of componentWillUnmount. In order to address this, I turned to the useEffect hook: const dispatch = useDispatch(); useEffect(( ...