You must Sign In to post a response.
  • Category: Sharepoint

    CKEditor With SPPeoplePicker Not Working

    HI Team,

    I am Using CK Editor (multi line Text box) in my Custom web-part, and I have a SP People picker below that both controls are in the same form.

    Issue is SP People picker control is not Working Properly like if click on People picker control CK Editor Text box text controls are loading in People Picker.

    Thanks in Advance
  • #767372
    This is the Sync issue between two components, can you check at this code may be helpful, you can try the similar behavior with Picker control.

    CKEDITOR.replace( 'editor', {
    plugins: 'wysiwygarea,sourcearea,basicstyles,toolbar,undo',
    on: {
    instanceReady: function() {
    // Show textarea for dev purposes.
    this.element.show();
    },
    change: function() {
    // Sync textarea.
    this.updateElement();

    // Fire keyup on <textarea> here?
    }
    }
    } );


  • Sign In to post your comments