Giter Site home page Giter Site logo

Comments (8)

Weidmann16 avatar Weidmann16 commented on September 27, 2024 3

Yeah that's right
Removing FixedHeader stops giving the error, so the problem is with this attribute.

image

from blazorise.

stsrki avatar stsrki commented on September 27, 2024

Hello, I'm unable to reproduce the issue. Can you provide us with more information?

  • The Provider that you use(Bootstrap, Fluent, etc.)?
  • Sample code if possible.

from blazorise.

github-actions avatar github-actions commented on September 27, 2024

Hello @Weidmann16, thank you for your submission. The issue was labeled "Status: Repro Missing", as you have not provided a way to reproduce the issue quickly. Most problems already solve themselves when isolated, but we would like you to provide us with a reproducible code to make it easier to investigate a possible bug.

from blazorise.

Weidmann16 avatar Weidmann16 commented on September 27, 2024

Hello I hope

you are having a good day.
The problem occurs on cell phones (this was reported by several users), I tried different browsers and the problem continues.

Below I leave the example on video and I will copy some code:

example.mp4

BarMenu:

<Bar Mode="BarMode.VerticalInline"
     CollapseMode="BarCollapseMode.Small"
     Breakpoint="Breakpoint.Desktop"
     NavigationBreakpoint="Breakpoint.Tablet"
     ThemeContrast="ThemeContrast.Dark">

    <BarToggler />
    <BarBrand>
        <BarItem>
            <BarLink To="">
                <BarIcon IconName="IconName.LayerGroup" />
                Inicio
            </BarLink>
        </BarItem>
    </BarBrand>
    <AuthorizeView>
        <Authorized Context="AuthenticationState">
            <BarMenu>
                <BarStart>
                    <BarItem>
                        <BarDropdown>
                            <AuthorizeView Policy="ITC">
                                <BarDropdownToggle>
                                    <BarIcon IconName="IconName.Ethernet" />
                                    Canales
                                </BarDropdownToggle>
                            </AuthorizeView>

Grid:

DataGrid TItem="SolicitudMantenimientoCambioEstado" Data="solicitudesMantenimientoEstado"
                  Sortable="true"
                    Responsive Narrow Filterable
                    Striped ShowPager FixedHeader PageSize="10"
                   UseInternalEditing="true"
         @bind-SelectedRow="selectSolicitud">
             <DataGridColumn TItem="SolicitudMantenimientoCambioEstado" Field="SolicitudMantenimientoSolicitudMantenimientoCambioEstado.IdSolicitudMantenimiento" Caption="ID"></DataGridColumn>
             <DataGridColumn TItem="SolicitudMantenimientoCambioEstado" Field="SolicitudMantenimientoSolicitudMantenimientoCambioEstado.UsuarioSolicitudMantenimiento.NombreUsuario" Caption="Nombre"></DataGridColumn>
             <DataGridColumn TItem="SolicitudMantenimientoCambioEstado" Field="SolicitudMantenimientoSolicitudMantenimientoCambioEstado.UsuarioSolicitudMantenimiento.ApellidoUsuario" Caption="Apellido"></DataGridColumn>
             <DataGridColumn TItem="SolicitudMantenimientoCambioEstado" Field="SolicitudMantenimientoSolicitudMantenimientoCambioEstado.SucursalCentroCostoSolicitudMantenimiento.SucursalSucursalCentroCosto.NombreSucursal" Caption="Local / Sucursal"></DataGridColumn>
             <DataGridColumn TItem="SolicitudMantenimientoCambioEstado" Field="SolicitudMantenimientoSolicitudMantenimientoCambioEstado.SucursalCentroCostoSolicitudMantenimiento.CentroCostoSucursalCentroCosto.NombreAreaCentroCosto" Caption="Centro Costo"></DataGridColumn>
             <DataGridColumn TItem="SolicitudMantenimientoCambioEstado" Field="SolicitudMantenimientoSolicitudMantenimientoCambioEstado.TipoMantenimientoOpcionTipoMantenimientoSolicitudMantenimiento.TipoMantenimientoFK.NombreTipoMantenimiento" Caption="Tipo"></DataGridColumn>
             <DataGridColumn TItem="SolicitudMantenimientoCambioEstado" Field="SolicitudMantenimientoSolicitudMantenimientoCambioEstado.TipoMantenimientoOpcionTipoMantenimientoSolicitudMantenimiento.OpcionTipoMantenimientoFK.NombreOpcionTipoMantenimiento" Caption="Opción"></DataGridColumn>
             <DataGridColumn TItem="SolicitudMantenimientoCambioEstado" Field="SolicitudMantenimientoSolicitudMantenimientoCambioEstado.NivelUrgenciaSolicitudMantenimiento.NombreNivelUrgencia" Caption="Urgencia"></DataGridColumn>
             <DataGridColumn TItem="SolicitudMantenimientoCambioEstado" Field="SolicitudMantenimientoSolicitudMantenimientoCambioEstado.FechaSolicitudMantenimiento" Caption="Fecha"></DataGridColumn>
             <DataGridColumn TItem="SolicitudMantenimientoCambioEstado" Field="SolicitudMantenimientoSolicitudMantenimientoCambioEstado.ObservacionSolicitudMantenimiento" Caption="Observación"></DataGridColumn>
             <DataGridColumn TItem="SolicitudMantenimientoCambioEstado" Field="EstadoSolicitudMantenimientoSolicitudMantenimientoCambioEstado.NombreEstadoSolicitudMantenimiento" Caption="Estado"></DataGridColumn>
         </DataGrid>

from blazorise.

David-Moreira avatar David-Moreira commented on September 27, 2024

This seems to be an incompatibility with the FixedHeader feature. Since the FixedHeader basically applies an higher zindex, background white in order to remain on top of the other rows that are scrolled below.

You don't seem to actual be using the feature?

  • You could try disabling for now.
  • You could try playing with the zindex of the sidebar components in order to make them sit over the FixedHeader.

We'll take a look at making it compatible with the sidebar.

from blazorise.

David-Moreira avatar David-Moreira commented on September 27, 2024

Hello I cannot seem to be able to reproduce this issue:
image

Do you have alot of custom css on your end? Would you like to pursue this issue? If so could you provide a github repo reproducing the issue?

from blazorise.

github-actions avatar github-actions commented on September 27, 2024

Hello @Weidmann16, thank you for your submission. The issue was labeled "Status: Repro Missing", as you have not provided a way to reproduce the issue quickly. Most problems already solve themselves when isolated, but we would like you to provide us with a reproducible code to make it easier to investigate a possible bug.

from blazorise.

github-actions avatar github-actions commented on September 27, 2024

This is an automated message reminding that this issue is expecting the author's answer.

from blazorise.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.