Skip to main content
Nintex Community Menu Bar
Question

Custom Components do not show in builder while editing popup.

  • July 9, 2024
  • 5 replies
  • 17 views

Forum|alt.badge.img+18

I’ve built a component pack with two custom components.

Here’s what they look like in the builder:

Now, when I try to configure a popup, here’s what the components list looks like:

No custom components.

Arg!

5 replies

Forum|alt.badge.img+9

Matt you have to add : isJSCreateable: true,

Check out this thread: https://community.skuid.com/t/custom-component-in-popup


Forum|alt.badge.img+18
  • Author
  • July 9, 2024

Thanks, Moshe.

I already have isJSCreatable: true .

Here’s the beginning of my code.

skuid.builder.core.registerBuilder(new skuid.builder.core.Builder({ <br>id: "ccoptimize__signature",<br>name: "Signature",<br>icon: "sk-icon-edit",<br>description: "Captures a signature",<br>isJSCreatable: true,<br>componentRenderer: function(component) {<br>....



Must be something else?


Forum|alt.badge.img+6
  • Nintex Employee
  • July 9, 2024

Looks like you’ve got a small typo:

isJSCreat<b><u>e</u></b>able : true


Forum|alt.badge.img+13

Spelling.

Create has an e at the end of it.

 isJSCreatable is not the same as isJSCreateable 


Forum|alt.badge.img+18
  • Author
  • July 9, 2024

Ha. Nice. Thanks, J.