This question is locked. New answers and comments are not allowed.
Hello,
The issue is the following:
A table is inserted into the header of the RadDocument. I change the thickness of the border of the table from code, but the table on the UI doesn’t refresh. If I manually resize the table on the UI than it updates and after that the continuous update of the UI is working so if I change the border thickness property from code the table changes on the UI.
This code changes the border thickness:
SelectedTable.Borders =
new
TableBorders(
new
Telerik.Windows.Documents.Model.Border(value, SelectedTable.Borders.All.Style, SelectedTable.Borders.All.Color));
AssociatedObject.UpdateEditorLayout();
I tried to call SelectedTable.InvalidateAssociatedBoxesLayout(); but it didn’t help.
The question is:
How can I force update the UI after changing the table border thickness property from code?
Best regards,
Tamas