We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apparently, moving inside the TableView with the Tab key, it makes possible to edit columns defined with IsReadOnly="True"
TableView
Tab
IsReadOnly="True"
For instance, given a TableView defined as:
<tableview:TableView x:Name="DataTable" x:DefaultBindMode="TwoWay" Background="White" ItemsSource="{x:Bind ViewModel.TaskData}" AutoGenerateColumns="False" SelectionChanged="TableView_SelectionChanged" SelectionMode="Extended" Visibility="{x:Bind ViewModel.VisibleTableView, Mode=OneWay}"> <tableview:TableView.Columns> <tableview:TableViewTextColumn Binding="{Binding TaskName}" IsReadOnly="True" CanFilter="False" CanSort="False"> </tableview:TableViewTextColumn> ... </tableview:TableView>
When the last columun cell is edited and, afterwards, the Tab key is pressed...
the focus jumps to the first column and the user can edit the first column which has the property IsReadOnly set to True
IsReadOnly
True
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description:
Apparently, moving inside the
TableView
with theTab
key, it makes possible to edit columns defined withIsReadOnly="True"
For instance, given a
TableView
defined as:When the last columun cell is edited and, afterwards, the
![Image](https://private-user-images.githubusercontent.com/63915486/411554451-3ead66ef-8c94-4f43-a22c-a560a5705ba6.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk1OTEwNTIsIm5iZiI6MTczOTU5MDc1MiwicGF0aCI6Ii82MzkxNTQ4Ni80MTE1NTQ0NTEtM2VhZDY2ZWYtOGM5NC00ZjQzLWEyMmMtYTU2MGE1NzA1YmE2LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTUlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE1VDAzMzkxMlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTI3N2NjMzMyNjlmMzQzMDBjYWJiYmY1MDQ4Nzc0MmM3YjE5MzcwZjQ0YTJlMGFhYjQzNmY2ODBjNTY0MDAzMjQmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.G8qwvLQuaHeDPU_2yBislxrUQBuV1FN-yW-vfxljk9g)
Tab
key is pressed...the focus jumps to the first column and the user can edit the first column which has the property
![Image](https://private-user-images.githubusercontent.com/63915486/411554821-294725c6-3d08-49c8-9834-795ba538a5ac.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk1OTEwNTIsIm5iZiI6MTczOTU5MDc1MiwicGF0aCI6Ii82MzkxNTQ4Ni80MTE1NTQ4MjEtMjk0NzI1YzYtM2QwOC00OWM4LTk4MzQtNzk1YmE1MzhhNWFjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTUlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE1VDAzMzkxMlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTZjMmU5NTEyOWNjNTllNzEwNjEwYWUyNDE1ODg3MTRlZDZlMTFkZmI2MzMyMDAyNTY1ZjFiYzAzZjk3ZmUzZWImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.kXLAbOVtMTleHsgdy9TGRxNUYhgMcANWW-OSmfH699E)
IsReadOnly
set toTrue
Environment:
The text was updated successfully, but these errors were encountered: