1

I am using ag-grid-community. I have tried cell render technique i.e Angular 6 ag-grid cell renderer click function in which I add Dropdown . And Not worked

1 Answer 1

2

Here Is Example Of DropDown...

 {
            headerName: 'Dropdown', field: 'dropdown',
            cellEditor: 'agRichSelectCellEditor',
            width: 140,          
            editable: true,

            cellEditorParams: (params) => {
            values: Get All Dropdown List
            },
            
            valueSetter: (params) => {
              if (params.newValue) {
               params.data.instrumentType = params.newValue;
                return true;
              }
              return false;
            }
 },
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.