Skip to content

Commit

Permalink
Fixed surveyjs/survey-creator#5826 - Multi-Select Matrix with a '' co…
Browse files Browse the repository at this point in the history
…lumn - Column headers disappear at design-time when editing column choices (#8779)

Co-authored-by: tsv2013 <[email protected]>
  • Loading branch information
tsv2013 and tsv2013 authored Sep 4, 2024
1 parent d498385 commit d1a377e
Show file tree
Hide file tree
Showing 4 changed files with 1,018 additions and 974 deletions.
4 changes: 4 additions & 0 deletions packages/survey-core/src/question_baseselect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -753,6 +753,10 @@ export class QuestionSelectBase extends Question {
var itemValue = ItemValue.getItemByValue(this.getFilteredChoices(), val);
return !!itemValue && !itemValue.isEnabled;
}
endLoadingFromJson(): void {
super.endLoadingFromJson();
this.updateVisibleChoices();
}
public clearIncorrectValuesCallback: () => void;
/**
* Configures access to a RESTful service that returns choice items. Refer to the [`ChoicesRestful`](https://surveyjs.io/form-library/documentation/choicesrestful) class description for more information. You can also specify additional application-wide settings using the [`settings.web`](https://surveyjs.io/form-library/documentation/api-reference/settings#web) object.
Expand Down
Loading

0 comments on commit d1a377e

Please sign in to comment.