Edit in JSFiddle

document.addEventListener("DOMContentLoaded", function() {
  new FancyGrid({
    title: 'Right Locked Columns',
    renderTo: 'container',
    width: 700,
    height: 400,
    data: data,
    defaults: {
      type: 'string',
      width: 100,
      sortable: true,
      resizable: true
    },
    columns: [{
      index: 'company',
      width: 105,
      locked: true,
      title: 'Company'
    }, {
      index: 'name',
      title: 'Name'
    }, {
      index: 'surname',
      title: 'Sur Name'
    }, {
      index: 'age',
      width: 60,
      title: 'Age',
      type: 'number'
    }, {
      index: 'knownledge',
      title: 'Knownledge'
    }, {
      index: 'position',
      title: 'Position',
      width: 150,
      ellipsis: true,
      rightLocked: true
    }]
  });
});

var data = [{
  name: 'Ted',
  surname: 'Smith',
  position: 'Java Developer',
  email: '[email protected]',
  company: 'Electrical Systems',
  age: 30,
  education: 'High School Of Cambridge',
  knownledge: 'Java, Ruby'
}, {
  name: 'Ed',
  surname: 'Johnson',
  position: 'C/C++ Market Data Developer',
  email: '[email protected]',
  company: 'Energy and Oil',
  age: 35,
  education: 'High School Of Cambridge',
  knownledge: 'C++'
}, {
  name: 'Sam',
  surname: 'Williams',
  position: 'Technical Analyst',
  email: '[email protected]',
  company: 'Airbus',
  age: 38,
  education: 'High School Of Cambridge',
  knownledge: ''
}, {
  name: 'Alexander',
  surname: 'Brown',
  position: 'Project Manager',
  email: '[email protected]',
  company: 'Renault',
  age: 24,
  education: 'High School Of Cambridge',
  knownledge: ''
}, {
  name: 'Nicholas',
  surname: 'Miller',
  position: 'Senior Software Engineer',
  email: '[email protected]',
  company: 'Adobe',
  age: 33,
  education: 'High School Of Cambridge',
  knownledge: 'Unix, C/C++'
}, {
  name: 'Andrew',
  surname: 'Thompson',
  position: 'Agile Project Manager',
  email: '[email protected]',
  company: 'Google',
  age: 28,
  education: 'High School Of Cambridge',
  knownledge: ''
}, {
  name: 'Ryan',
  surname: 'Walker',
  position: 'Application Support Engineer',
  email: '[email protected]',
  company: 'Siemens',
  age: 39,
  education: 'High School Of Cambridge',
  knownledge: 'ActionScript'
}, {
  name: 'John',
  surname: 'Scott',
  position: 'Flex Developer',
  email: '[email protected]',
  company: 'Cargo',
  age: 45,
  education: 'High School Of Cambridge',
  knownledge: 'Flex'
}, {
  name: 'James',
  surname: 'Phillips',
  position: 'Senior C++/C# Developer',
  email: '[email protected]',
  company: 'Pro bugs',
  age: 30,
  education: 'High School Of Cambridge',
  knownledge: 'C/C++, Unix'
}, {
  name: 'Brian',
  surname: 'Edwards',
  position: 'UNIX/C++ Developer',
  email: '[email protected]',
  company: 'IT Consultant',
  age: 23,
  education: 'High School Of Cambridge',
  knownledge: 'C/C++ Unix'
}, {
  name: 'Jack',
  surname: 'Richardson',
  position: 'Ruby Developer',
  email: '[email protected]',
  company: 'Europe IT',
  age: 24,
  education: 'High School Of Cambridge',
  knownledge: 'Ruby'
}, {
  name: 'Alex',
  surname: 'Howard',
  position: 'CSS3/HTML5 Developer',
  email: '[email protected]',
  company: 'Cisco',
  age: 27,
  education: 'High School Of Cambridge',
  knownledge: 'CSS3/HTML5'
}, {
  name: 'Carlos',
  surname: 'Wood',
  position: 'Node.js Developer',
  email: '[email protected]',
  company: 'HP',
  age: 36,
  education: 'High School Of Cambridge',
  knownledge: 'Node.js'
}, {
  name: 'Adrian',
  surname: 'Russell',
  position: 'Frontend Developer',
  email: '[email protected]',
  company: 'Micro Systems',
  age: 31,
  education: 'High School Of Cambridge',
  knownledge: 'HTML, JavaScript'
}, {
  name: 'Jeremy',
  surname: 'Hamilton',
  position: 'Scala Developer',
  email: '[email protected]',
  company: 'Big Machines',
  age: 30,
  education: 'High School Of Cambridge',
  knownledge: 'Scala'
}, {
  name: 'Ivan',
  surname: 'Woods',
  position: 'Objective C Developer',
  email: '[email protected]',
  company: '',
  age: 24,
  education: 'High School Of Cambridge',
  knownledge: 'Objective C'
}, {
  name: 'Peter',
  surname: 'West',
  position: 'PHP/HTML Developer',
  email: '[email protected]',
  company: 'Adobe',
  age: 26,
  education: 'High School Of Cambridge',
  knownledge: 'PHP/HTML'
}, {
  name: 'Scott',
  surname: 'Simpson',
  position: 'Designer',
  email: '[email protected]',
  company: 'IBM',
  age: 29,
  education: 'High School Of Cambridge',
  knownledge: 'Adobe PhotoShop'
}, {
  name: 'Lorenzo',
  surname: 'Tucker',
  position: 'Architect',
  email: '[email protected]',
  company: 'Intel',
  age: 29,
  education: 'High School Of Cambridge',
  knownledge: ''
}, {
  name: 'Randy',
  surname: 'Grant',
  position: 'Engineer',
  email: '[email protected]',
  company: 'Bridges',
  age: 30,
  education: 'High School Of Cambridge',
  knownledge: ''
}, {
  name: 'Arthur',
  surname: 'Gardner',
  position: 'Analytic',
  email: '[email protected]',
  company: 'Google',
  age: 31,
  education: 'High School Of Cambridge',
  knownledge: ''
}, {
  name: 'Orlando',
  surname: 'Ruiz',
  position: 'Unit Testing Developer',
  email: '[email protected]',
  company: 'Apple',
  age: 32,
  education: 'High School Of Cambridge',
  knownledge: ''
}];
<script src="https://cdn.fancygrid.com/fancy.min.js"></script>

<div id="container"></div>