ui.Checkbox
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
लेबल वाला चेकबॉक्स.
इस्तेमाल | रिटर्न |
---|
ui.Checkbox(label, value, onChange, disabled, style) | ui.Checkbox |
आर्ग्यूमेंट | टाइप | विवरण |
---|
label | स्ट्रिंग, ज़रूरी नहीं | चेकबॉक्स का लेबल. डिफ़ॉल्ट रूप से, यह खाली स्ट्रिंग होती है. |
value | बूलियन, ज़रूरी नहीं | चेकबॉक्स चुना गया है या नहीं. शून्य वैल्यू से पता चलता है कि चेकबॉक्स की स्थिति तय नहीं है. डिफ़ॉल्ट रूप से, यह 'गलत' पर सेट होती है. |
onChange | फ़ंक्शन, ज़रूरी नहीं है | चेकबॉक्स की वैल्यू बदलने पर ट्रिगर होने वाला कॉलबैक. कॉलबैक को एक बूलियन वैल्यू पास की जाती है. इससे पता चलता है कि चेकबॉक्स पर अब सही का निशान लगा है या नहीं. साथ ही, चेकबॉक्स विजेट भी पास किया जाता है. |
disabled | बूलियन, ज़रूरी नहीं | चेकबॉक्स बंद है या नहीं. डिफ़ॉल्ट रूप से, यह 'गलत' पर सेट होती है. |
style | ऑब्जेक्ट, ज़रूरी नहीं है | सीएसएस की उन स्टाइल का ऑब्जेक्ट जिन्हें इस विजेट के लिए सेट किया जा सकता है. style() फ़ंक्शन का दस्तावेज़ देखें. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-29 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-29 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eThe \u003ccode\u003eui.Checkbox\u003c/code\u003e widget is used to create a checkbox with a label, allowing users to select or deselect an option.\u003c/p\u003e\n"],["\u003cp\u003eIt can be initialized with optional parameters for label, value, onChange callback, disabled state, and custom styles.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eonChange\u003c/code\u003e callback is triggered when the checkbox value changes, providing access to the new checked state and the checkbox widget itself.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003evalue\u003c/code\u003e can be set to \u003ccode\u003enull\u003c/code\u003e to represent an indeterminate state, while \u003ccode\u003edisabled\u003c/code\u003e and \u003ccode\u003estyle\u003c/code\u003e parameters offer control over the widget's interactivity and appearance.\u003c/p\u003e\n"]]],["The core content describes a `ui.Checkbox` widget, its usage, and its arguments. It can be created using `ui.Checkbox()` and allows for a `label`, a boolean `value` (checked/unchecked/indeterminate), an `onChange` callback function, a `disabled` state, and custom `style`. The `onChange` callback receives the new boolean state and the widget itself. Each parameter is optional and has default values.\n"],null,["# ui.Checkbox\n\n\u003cbr /\u003e\n\nA checkbox with a label.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|--------------------------------------------------------------------------------|-------------|\n| `ui.Checkbox(`*label* `, `*value* `, `*onChange* `, `*disabled* `, `*style*`)` | ui.Checkbox |\n\n| Argument | Type | Details |\n|------------|--------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `label` | String, optional | The checkbox's label. Defaults to an empty string. |\n| `value` | Boolean, optional | Whether the checkbox is checked. A null value indicates that the checkbox is in an indeterminate state. Defaults to false. |\n| `onChange` | Function, optional | A callback to fire when the value of the checkbox changes. The callback is passed a boolean indicating whether the checkbox is now checked and the checkbox widget. |\n| `disabled` | Boolean, optional | Whether the checkbox is disabled. Defaults to false. |\n| `style` | Object, optional | An object of allowed CSS styles with their values to be set for this widget. See style() documentation. |"]]