BoldSign®Effortlessly integrate e-signatures into your app with the BoldSign® API. Create a sandbox account!
let listObj: ListBox = new ListBox({
dataSource: (data as any).info,
itemTemplate: '
< input ></input> ',
beforeItemRender: function (args: BeforeItemRenderEventArgs) {
(args.element.querySelector('input') as HTMLInputElement).value = args.item.text;
}
}); |