Skip to content

Instantly share code, notes, and snippets.

@lmcarreiro
Last active March 21, 2018 17:51
Show Gist options
  • Select an option

  • Save lmcarreiro/24a59f4e83bfadf93425186ab1c786f2 to your computer and use it in GitHub Desktop.

Select an option

Save lmcarreiro/24a59f4e83bfadf93425186ab1c786f2 to your computer and use it in GitHub Desktop.
Grid Columns non-indented
const columns = [
{ name: 'id', index: 'id', width: 55 },
{ name: 'invdate', index: 'invdate', width: 90 },
{ name: 'name', index: 'name asc, invdate', width: 100 },
{ name: 'amount', index: 'amount', width: 80, align: "right" },
{ name: 'tax', index: 'tax', width: 80, align: "right" },
{ name: 'total', index: 'total', width: 80, align: "right" },
{ name: 'note', index: 'note', width: 150, sortable: false }
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment