1

ここで苦労しているという点で、Googleスクリプトを使用して簡単なgmailアドオンを作成しました。

私は単純なカードを使用しましたが、問題は、カードの中央にアクションボタンを配置し、CSS スタイルを TextInput に適用する必要があることです。

ドキュメントを参照しましたが、方法が見つかりません

私が試した以下のコード、

var card = CardService.newCardBuilder();
  card.setHeader(CardService.newCardHeader().setTitle("Login Here"));
  var section = CardService.newCardSection()
  var cleint_id_Input = CardService.newTextInput()
     .setFieldName("client_id")
     .setTitle("Please enter clinet id")
  var username_Input = CardService.newTextInput()
     .setFieldName("username")
     .setTitle("Please enter username")
  var password_Input = CardService.newTextInput()
     .setFieldName("password")
     .setTitle("Please enter password")
  section.addWidget(cleint_id_Input)
  section.addWidget(username_Input)
  section.addWidget(password_Input)
  Logger.log("Input Value%s",cleint_id_Input)
  //Login action button
  var action = CardService.newAction().setFunctionName('loginCallback');
  section.addWidget(CardService.newTextButton().setText('Login').setOnClickAction(action))  
  card.addSection(section)

前もって感謝します

4

1 に答える 1