<k-table> options and css class

Hi,

I have table:

<k-table striped hover
			:columns="{
				id: { label: 'Id', type: 'text'},
				user: { label: 'User', type: 'text'},
				date: { label: 'Date', type: 'text'},
				location: { label: 'Location', type: 'text'},
				type: { label: 'Type', type: 'text'},
				action: { label: 'Action', type: 'text'},
				changes: { label: 'Changes', type: 'text'}
			}"
			:rows=entries.data
			:empty=empty
			:index=true
			:sortable=true
			:pagination="entries.pagination"
			@paginate="paginate"
      :options="'dashboard-tracker/' + id""
		/>

Questions:

  • :options="'dashboard-tracker/' + id"" seems to not work and return id as undefined, how do i do it properly and pass that id to that dialog?
  • how do i add specific css class to specific td columns, i tried to do id: { label: 'Id', type: 'text', class: 'test'}, and it is not working

Any help appreciated.