Guest User

Untitled

a guest
May 24th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. function createRow(d)
  2.     return
  3.     {
  4.         cols = {
  5.             {
  6.                 value = function() end,
  7.                 args = {},
  8.             }, 
  9.             {
  10.                 value = function(data) if data then return data end end,
  11.                 args = {d},
  12.             }, 
  13.         },
  14.         name = d,
  15.         isTitle=true,--set to false if not title row
  16.     }
  17. end
Add Comment
Please, Sign In to add comment