React Table Cell Component 'hidden' behind Edit Row
2025/03/21 10:39 PM
I've added a ColumnConfiguration.AddComponentColumn to add a special React element, however the AddEditRowAction<> is activated when I click instead of the Component Column...
I could add a custom "Edit" Pencil icon component column and remove the normal AddEditRowAction, but that seems kind of hacky...
Any recommendations?
PageConfiguration.ColumnConfigurations.AddComponentColumn(
nameof(TaskEntityPartInfo.TaskEntityPartCPAssignmentID),
CPAssignmentBuilderComponent._TableCellComponentName,
modelRetriever: (value, allData) => new CPAssignmentBuilderProperties() {
AssignmentID = ValidationHelper.GetValue(value, 0),
Show = _taskEntityTypeRepository.GetTaskEntityTypeCodeName((int)allData[nameof(TaskEntityPartInfo.TaskEntityPartTaskEntityTypeID)]).Equals(TaskEntityTypes.CalcPad, StringComparison.OrdinalIgnoreCase)
},
sortable: false,
caption: "Launch Assignment",
maxWidth: 25);
PageConfiguration.AddEditRowAction<TaskEntityPartSectionPage>();
Environment
- Xperience by Kentico version: [30.2.0]
- .NET version: [8]
- Execution environment: [Local]
Answers
To answer this question, you have to login first.