I am using inline edit for end_date using best_in_place and datepicker for each product. When click on end_date for product1 the datepicker will open up.Then, I click the end_date of product1 again, the date picker will not come, so I can't open/edit it again. I used the below code.
<span>
<%= best_in_place product, :end_date, :as => :date, :value => end_date, :class=>"strategies_css dateValue",:style=>"overflow-x: hidden;", url: products_path(product,:page =>"inline"), :data => {:id => product.id}%>
</span>
How can I solve this issue.Please help.
Thanks