We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The table column should accept any HTML attributes in the table.column method to support adding inline HTML attributes to the th tag in the table.
table.column
th
Table items: Interviewer.all do |table| table.column("Interviewer") { show(_1, :name, style: "white-space: nowrap;") } InterviewTime.all.each do |time| table.column(time.name, style: "white-space: nowrap;") { _1.interviews.build(interview_time: time) input(type: :checkbox, checked: [true,false].sample) } end end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The table column should accept any HTML attributes in the
table.column
method to support adding inline HTML attributes to theth
tag in the table.The text was updated successfully, but these errors were encountered: