Hi,
Is there a way where we can add comments for each cell from UI in web grid?
Regards,
Naresh.
Hi,
Is there a way where we can add comments for each cell from UI in web grid?
Regards,
Naresh.
Hi,
WebCell cell = GridWeb1.WebWorksheets[0].Cells[row,column];
WebComments comments = GridWeb1.WebWorksheets[0].Comments;
WebComment comment = comments.AddComment(cell);
comment.Note = “Your comment text”;
See the demo for your reference:
Hi Amjad,
Thanks for your replay.
You have provided me the way to add comments from the code behind. But our requirement is to add comments from the User Interface (like how we will input values into cells).
May be on right click of the cell we should be able to provide comments for that cell.
Is this feasible?
Thanks In advance.
Naresh.
Hi,
Hi,
Sure, you can add comment by custom context menu and add your own code on server side.