Giter VIP home page Giter VIP logo

Comments (4)

inovua-admin avatar inovua-admin commented on May 30, 2024

Thanks for reporting, but this is not a valid bug report. Please attach a code sample and describe what you are doing. Thank you

from reactdatagrid.

SampathkumarSadasivam avatar SampathkumarSadasivam commented on May 30, 2024

Hi,

Sample Code

import React from 'react'

import ReactDataGrid from '@inovua/reactdatagrid-enterprise'
import '@inovua/reactdatagrid-enterprise/index.css'

import people from './people'
import flags from './flags'

const gridStyle = { minHeight: 550, maxWidth: 1000 };

const columns = [
{ defaultLocked: true, name: 'id', header: 'Id', defaultVisible: false, defaultWidth: 100, type: 'number' },
{ name: 'name', header: 'Name', defaultFlex: 1, minWidth: 450 ,editable:true},
{ name: 'country', header: 'Country', defaultFlex: 1, minWidth: 200,
render: ({ value }) => flags[value] ? flags[value] : value
},
{ name: 'city', header: 'City', defaultFlex: 1, minWidth: 450 ,editable:true},
{ defaultLocked: 'end', name: 'age', header: 'Age', minWidth: 100, type: 'number' }
]

const App = () => {
return (


Scroll horizontally to see the effect




);
}

export default () =>

from reactdatagrid.

SampathkumarSadasivam avatar SampathkumarSadasivam commented on May 30, 2024

Simulation

Click edit mode on name and press tab focus was moved but it was not visible in viewport.

from reactdatagrid.

inovua-admin avatar inovua-admin commented on May 30, 2024

The thing is you want scrolling when navigating between cells with tab-navigation, but this issue occurs when not enough space in the scrollable viewport and you have too many locked columns. Try keeping each column smaller in size than the non-locked viewport size.

from reactdatagrid.

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.