إضافة/إزالة التعليقات من الجانب العميل
Contents
[
Hide
]
يناقش هذا الموضوع إضافة وإزالة التعليقات من الجانب العميل في عنصر التحكم Aspose.Cells.GridWeb.
Aspose.Cells GridWeb الآن يدعم إضافة وإزالة التعليقات من الجانب العميل. لهذا الغرض، يوفر الواجهة البرمجية للمستخدم الوظائف “addcomments” و “delcomments”. يظهر مقتطف الكود التالي إضافة وإزالة التعليقات من الجانب العميل في GridWeb.
كود عينة
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
<script> | |
function addComment() { | |
gridwebinstance.getByIndex(0).addcomments({note:'hello',author:'aspose'}); | |
} | |
function removeComment() { | |
gridwebinstance.getByIndex(0).delcomments(); | |
} | |
</script> |