Disable Bubble Editing
Disable Bubble Editing
I am close to having this kind of figured out but cannot get it exactly right. How can I only allow "cells" to be edited if the value in the data is only NULL. I would like to only allow editing where the data is NULL or has a value of UPDATE in the cell.
Any help would be appreciated.
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Hi,
What you would need to do is check the value of the cell before calling the
bubble()
method. For example you could usecell().data()
to check the data value for the cell in question (in your event handler) and use a simpleif
condition to see if it is null:or something to that effect!
Allan
thanks. that helped immensely. In the end, I got this to work: