Vivek S
Vivek S

Reputation: 107

Activeadmin - Need to add two values and show it in third column

I am trying to add the values and introduce a new column in Activeadmin, so that when I add the values it automatically sum up the values and show it in the next column.

Image for reference:
image is here

Upvotes: 2

Views: 1367

Answers (1)

Sravan
Sravan

Reputation: 18647

Take a title to a column add add the required columns to it.

index do
  selectable_column
  column "New Column" do |your_model_name|
    staff_salary.to_i + visa_&_medical.to_i
  end
end

Refer here.

Upvotes: 3

Related Questions