Select
ve Select
için seçenekler oluşturmaya yönelik bir oluşturucu.
const cc = DataStudioApp.createCommunityConnector(); const config = cc.getConfig(); const option1 = config.newOptionBuilder().setLabel('option label').setValue('option_value'); const option2 = config.newOptionBuilder() .setLabel('second option label') .setValue('option_value_2'); const info1 = config.newSelectSingle() .setId('api_endpoint') .setName('Data Type') .setHelpText('Select the data type you\'re interested in.') .addOption(option1) .addOption(option2);
Yöntemler
Yöntem | Dönüş türü | Kısa açıklama |
---|---|---|
set | Option | Bu seçenek oluşturucunun etiketini ayarlar. |
set | Option | Bu seçenek oluşturucunun değerini belirler. |
Ayrıntılı dokümanlar
set Label(label)
Bu seçenek oluşturucunun etiketini ayarlar. Etiketler, kullanıcının açılır listeden bir veya daha fazla seçenek belirlerken gördüğü metindir.
Parametreler
Ad | Tür | Açıklama |
---|---|---|
label | String | Ayarlanacak etiket. |
Return
Option
: Zincirleme için bu oluşturucu.
set Value(value)
Bu seçenek oluşturucunun değerini belirler. Kullanıcı açılır menüden bir veya daha fazla seçenek belirlediğinde değerler koda iletilir.
Parametreler
Ad | Tür | Açıklama |
---|---|---|
value | String | Ayarlanacak değer. |
Return
Option
: Zincirleme için bu oluşturucu.