इस JSON संरचना का उपयोग स्थिति पट्टी में बटन नियंत्रण को कॉन्फ़िगर करने के लिए किया जाता है। बटन नियंत्रण JSON संरचना को स्थिति पट्टी तालिका JSON संरचना में एम्बेड किया जा सकता है। यह संरचना एक पुराने संस्करण संरचना है, और मंच अभी भी संगत है। बटन JSON संरचना के नवीनतम संस्करण का उपयोग करने की सिफारिश की जाती है। स्थिति पट्टी बटन नियंत्रण का निर्माण करने का उदाहरण (बटन को ट्रिगर करने और क्लिक करने के बाद, पॉप-अप बॉक्स में एक एकल इनपुट नियंत्रण होता है, जिसे इनपुट फ़ील्ड के माध्यम से बनाया जाता है):
{
"type": "button",
"cmd": "open",
"name": "opening a position",
"input": {
"name": "number of opening positions",
"type": "number",
"defValue": 1
}
}
पॉप-अप बॉक्स में नियंत्रण स्थिति पट्टी बटन पर क्लिक करके ट्रिगर किया जाता है नियंत्रण के माध्यम से सेट कर रहे हैंinput
याgroup
.
बटन नियंत्रणों के लिए, फिक्स्ड सेटिंग हैःbutton
.
प्रकार
स्ट्रिंग
बटन प्रकार सेटिंग्स
वर्ग
स्ट्रिंग
बटन नियंत्रण पर पाठ, यानी बटन का नाम।
नाम
स्ट्रिंग
इंटरैक्टिव कमांड सामग्री जब बटन नियंत्रण क्लिक ऑपरेशन को ट्रिगर करता है, तो रणनीति को भेजी जाती है.
सीएमडी
स्ट्रिंग
बटन नियंत्रण का वर्णन. विवरण तब प्रदर्शित होता है जब माउस स्थिति पट्टी में बटन पर रखा जाता है.
वर्णन
स्ट्रिंग
बटन को अक्षम (सही) / सक्षम (गलत) पर सेट करें.
विकलांग
बोल
बातचीत के लिए एक स्थिति पट्टी बटन का निर्माण करते समय, डेटा इनपुट भी समर्थित है। अंततः बातचीत कमांड द्वारा कैप्चर किया जाता हैGetCommand()
कार्य जोड़ेंinput
स्थिति पट्टी में बटन नियंत्रण के JSON डेटा संरचना के लिए आइटम बटन ट्रिगर होने पर प्रदर्शित पॉप-अप बॉक्स में इनपुट नियंत्रण को कॉन्फ़िगर करने के लिए.
उदाहरण के लिए, मूल्य निर्धारित करने के लिएinput
फ़ील्डः
{
"name": "Number of opening positions",
"type": "number",
"defValue": 1,
"description": "test",
}
उपरोक्त JSON संरचना में प्रत्येक क्षेत्र का विवरणः
"number"
संख्यात्मक इनपुट नियंत्रण।"string"
: स्ट्रिंग इनपुट नियंत्रण."selected"
ड्रॉप-डाउन बॉक्स नियंत्रण।"boolean"
स्विच नियंत्रण।"input": {"name": "Opening quantity", "type": "selected", "defValue": "A|B|C"}
, ड्रॉप-डाउन बॉक्स विकल्पों का टेक्स्ट विवरण A, B, C पर सेट किया गया है.ड्रॉप-डाउन बॉक्स प्रकार नियंत्रण द्वारा विस्तारित क्षेत्रों के लिएः
{text: "description", value: "value"}
डिफ़ॉल्ट विकल्प सेट करने के लिए defValue फ़ील्ड का उपयोग करें, जो कई चयन हो सकते हैं.इनपुट
JSON
दinput
फ़ील्ड पॉप-अप बॉक्स में एक नियंत्रण को कॉन्फ़िगर करता है जो स्थिति पट्टी बटन पर क्लिक करके ट्रिगर होने के बाद पॉप अप होता है।group
औरinput
है कि यह नियंत्रणों के एक समूह को कॉन्फ़िगर करता है।group
के समान डेटा संरचना हैinput
फ़ील्ड मान. कृपया संबंधित विवरण देखेंinput
field.
समूह सरणी
एक उदाहरणclass
स्थिति पट्टी में एक बटन की JSON संरचना का मानः
function main() {
var table = {
type: "table",
title: "Status bar button style",
cols: ["Default", "Original", "Success", "Information", "Warning", "Danger"],
rows: [
[
{"type":"button", "class": "btn btn-xs btn-default", "name": "Default"},
{"type":"button", "class": "btn btn-xs btn-primary", "name": "Original"},
{"type":"button", "class": "btn btn-xs btn-success", "name": "Success"},
{"type":"button", "class": "btn btn-xs btn-info", "name": "Information"},
{"type":"button", "class": "btn btn-xs btn-warning", "name": "Warning"},
{"type":"button", "class": "btn btn-xs btn-danger", "name": "Danger"}
]
]
}
LogStatus("`" + JSON.stringify(table) + "`")
}
उदाहरण का उपयोगgroup
क्षेत्र के साथinput
फ़ील्डः
function main() {
// The drop-down box control in the page triggered by the testBtn1 button uses the options field to set options and the defValue field to set the default options. This is different from other examples in this chapter that directly use defValue to set options.
var testBtn1 = {
type: "button",
name: "testBtn1",
cmd: "cmdTestBtn1",
input: {name: "testBtn1ComboBox", type: "selected", options: ["A", "B"], defValue: 1}
}
/*
Status bar button control (set input field implementation) testBtn2 button triggered by the page in the drop-down box control using the options field to set the options, options field in the options field not only supports the string,
it also supports the use of ```{text: "description", value: "value"}``` structure. Use the defValue field to set the default option. The default option can be multiple selection (multiple selection is achieved through an array structure). Multiple selection requires setting the additional field multiple to true.
*/
var testBtn2 = {
type: "button",
name: "testBtn2",
cmd: "cmdTestBtn2",
input: {
name: "testBtn2MultiComboBox",
type: "selected",
description: "Implementing multiple selection in drop-down box",
options: [{text: "Option A", value: "A"}, {text: "Option B", value: "B"}, {text: "Option C", value: "C"}],
defValue: ["A", "C"],
multiple: true
}
}
// Status bar grouping button control (set group field implementation) testBtn3 button triggered by the page in the drop-down box control using the options field to set options, also supports the direct use of defValue set options.
var testBtn3 = {
type: "button",
name: "testBtn3",
cmd: "cmdTestBtn3",
group: [
{name: "comboBox1", label: "labelComboBox1", description: "Drop-down box 1", type: "selected", defValue: 1, options: ["A", "B"]},
{name: "comboBox2", label: "labelComboBox2", description: "Drop-down box 2", type: "selected", defValue: "A|B"},
{name: "comboBox3", label: "labelComboBox3", description: "Drop-down box 3", type: "selected", defValue: [0, 2], multiple: true, options: ["A", "B", "C"]},
{
name: "comboBox4",
label: "labelComboBox4",
description: "Drop-down box 4",
type: "selected",
defValue: ["A", "C"],
multiple: true,
options: [{text: "Option A", value: "A"}, {text: "Option B", value: "B"}, {text: "Option C", value: "C"}, {text: "Option D", value: "D"}]
}
]
}
while (true) {
LogStatus("`" + JSON.stringify(testBtn1) + "`\n", "`" + JSON.stringify(testBtn2) + "`\n", "`" + JSON.stringify(testBtn3) + "`\n")
var cmd = GetCommand()
if (cmd) {
Log(cmd)
}
Sleep(5000)
}
}
{@fun/Log/LogStatus लॉगस्टेटस}
लॉगस्टेटस-तालिका लॉगस्टेटस-btnTypeTwo