mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 06:51:55 +00:00
Improved users view screenreader table navigation
This commit is contained in:
@@ -43,7 +43,7 @@
|
|||||||
<td>
|
<td>
|
||||||
<img class="rounded-circle user-icon" src="~/Home/UserPhoto?uid=@userTableViewModel.Uid&size=48" alt="Photo" style="width:32px;height:32px;" width="32" height="32" loading="lazy" />
|
<img class="rounded-circle user-icon" src="~/Home/UserPhoto?uid=@userTableViewModel.Uid&size=48" alt="Photo" style="width:32px;height:32px;" width="32" height="32" loading="lazy" />
|
||||||
</td>
|
</td>
|
||||||
<td>@userTableViewModel.Uid</td>
|
<td tabindex="0">@userTableViewModel.Uid</td>
|
||||||
<td>@userTableViewModel.Title</td>
|
<td>@userTableViewModel.Title</td>
|
||||||
<td>@userTableViewModel.Name</td>
|
<td>@userTableViewModel.Name</td>
|
||||||
<td>@userTableViewModel.Surname</td>
|
<td>@userTableViewModel.Surname</td>
|
||||||
@@ -557,7 +557,7 @@
|
|||||||
const newRow = document.createElement('tr');
|
const newRow = document.createElement('tr');
|
||||||
newRow.innerHTML = `
|
newRow.innerHTML = `
|
||||||
<td><img class="rounded-circle user-icon" src="/Home/UserPhoto?uid=${result.Uid}&size=48" alt="Photo" style="max-width:300px;" /></td>
|
<td><img class="rounded-circle user-icon" src="/Home/UserPhoto?uid=${result.Uid}&size=48" alt="Photo" style="max-width:300px;" /></td>
|
||||||
<td>${result.Uid || ''}</td>
|
<td tabindex="0">${result.Uid || ''}</td>
|
||||||
<td>${data.Title || ''}</td>
|
<td>${data.Title || ''}</td>
|
||||||
<td>${data.Cn || ''}</td>
|
<td>${data.Cn || ''}</td>
|
||||||
<td>${data.Sn || ''}</td>
|
<td>${data.Sn || ''}</td>
|
||||||
|
|||||||
Reference in New Issue
Block a user