تنظيم صفحاتك في مجموعات يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
الإشعار
إشعار يُعرَض للمستخدم استجابةً للتفاعل مع عنصر واجهة مستخدم.
constaction=CardService.newAction().setFunctionName('notificationCallback');CardService.newTextButton().setText('Save').setOnClickAction(action);// ...functionnotificationCallback(){returnCardService.newActionResponseBuilder().setNotification(CardService.newNotification().setText('Some info to display to user'),).build();}
تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)
[[["يسهُل فهم المحتوى.","easyToUnderstand","thumb-up"],["ساعَدني المحتوى في حلّ مشكلتي.","solvedMyProblem","thumb-up"],["غير ذلك","otherUp","thumb-up"]],[["لا يحتوي على المعلومات التي أحتاج إليها.","missingTheInformationINeed","thumb-down"],["الخطوات معقدة للغاية / كثيرة جدًا.","tooComplicatedTooManySteps","thumb-down"],["المحتوى قديم.","outOfDate","thumb-down"],["ثمة مشكلة في الترجمة.","translationIssue","thumb-down"],["مشكلة في العيّنات / التعليمات البرمجية","samplesCodeIssue","thumb-down"],["غير ذلك","otherDown","thumb-down"]],["تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)"],[[["\u003cp\u003eNotifications inform users about the results of their interactions, such as clicking a button.\u003c/p\u003e\n"],["\u003cp\u003eDevelopers can use \u003ccode\u003esetText()\u003c/code\u003e to customize the notification's message.\u003c/p\u003e\n"],["\u003cp\u003eThe notification is triggered by a function, which is set as an action on a UI element.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003enotificationCallback()\u003c/code\u003e showcases how to build and display a notification to the user.\u003c/p\u003e\n"]]],["The core content details how to create and display a notification to a user interacting with a UI element. A new `Action` is created, and a `TextButton` is linked to it using `setOnClickAction`. The `notificationCallback` function, triggered by the button, builds an `ActionResponse` with a `Notification`. `setText()` method is used to set the notification message text. It takes a string and returns the `Notification` object, permitting method chaining.\n"],null,["Notification\n\nA notification shown to the user as a response to interacting with a UI element.\n\n```javascript\nconst action = CardService.newAction().setFunctionName('notificationCallback');\nCardService.newTextButton().setText('Save').setOnClickAction(action);\n\n// ...\n\nfunction notificationCallback() {\n return CardService.newActionResponseBuilder()\n .setNotification(\n CardService.newNotification().setText('Some info to display to user'),\n )\n .build();\n}\n``` \n\nMethods\n\n| Method | Return type | Brief description |\n|-----------------------------------|-------------------|--------------------------------------------|\n| [setText(text)](#setText(String)) | [Notification](#) | Sets the text to show in the notification. |\n\nDetailed documentation \n\n`set``Text(text)` \nSets the text to show in the notification. Required.\n\nParameters\n\n| Name | Type | Description |\n|--------|----------|------------------------|\n| `text` | `String` | The notification text. |\n\nReturn\n\n\n[Notification](#) --- This object, for chaining."]]