About custom panels

Hi , Team

You provided amazing custom panels, its really great.

To be worked its need to initialize SDK, which in TypeScript.
Will you plan support this SDK in simple JS?

Best whishes,
Nikolay

Hi @Nikolay_Dromov,

Thank you for your feedback. Currently, the SDK works with regular JavaScript. We just added type definitions for developers who use typescript. Our example apps are written in JS.

I hope this helps? Please let me know if you have further questions and/or feedback. :blush:

Hi, @Nicole_Tan

I hope it will help. I will go deeper :slight_smile:

Thank you for direction

1 Like

Hi, @Nicole_Tan

It seems like working ok. Custom panel is loading.
Could you explain how we could verify JWT for checking is this pipedrive query?
What data format of source this JWT?

Best wishes,
Nikolay

Hi @Nikolay_Dromov,

Great to hear that the custom panel is loading.
For JWT, you can find out more here.
I believe it’s in JSON format as JWT is a JSON web token.
Let me know if you have further questions. :slight_smile:

1 Like

Hi @Nicole_Tan

Thank you)

1 Like

This topic was automatically closed after 10 days. New replies are no longer allowed.

Hi @Nikolay_Dromov
You can now try Custom UI extensions without the need to have TypeScript.

<html>
  <head>
    <title>Custom UI: Basic HTML example</title>
    <link rel="stylesheet" href="style.css">

    <script src="https://cdn.jsdelivr.net/npm/@pipedrive/app-extensions-sdk@0.2.0-rc.0/dist/index.umd.js"></script>
    <script>
      (async function () {
        const sdk = await new AppExtensionsSdk().initialize();
      })();
    </script>
  </head>

  <body>
    <h2>Hello from Custom UI</h2>
    <p>Open any deal and Check the details section πŸƒβ€β™‚οΈ</p>
  </body>
</html>
1 Like

Hi @Hem

Thank you! It will help

1 Like