Update/Remove comments from javascript

Hi again!, I need to gain access to cell's comments to update/remove them from javascript. Is this possible?

Thx in advance.

Hi,

We will check if we can support this feature (manipulating comments from client side) soon.

Thank you.

Well, you will check the support for this feature, meanwhile I fixed my issue just referencing to cell's cmnt property and replace the text. Now, if you won't still get the text in tooltip, then remove the attribute.

cell.cmnt = "";

if you won't see text in tooltip then:

cell.removeAttribute("cmnt");

Although this isn't the better solution (cause maybe the name of the comment attribute could change in future releases of the Grid), it works.

Cheers.