[]
type BarcodeSettings = object;
optional hideUnsupportedBarcodeJSProperties: boolean;
Hides some unsupported barcodeJS properties
// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
rdlx: {
reportItemsFeatures: {
barcode: {
hideUnsupportedBarcodeJSProperties: true
}
}
}
});
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rdlx: {
reportItemsFeatures: {
barcode: {
hideUnsupportedBarcodeJSProperties: true
}
}
}
});
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rdlx: {
reportItemsFeatures: {
barcode: {
hideUnsupportedBarcodeJSProperties: true
}
}
}
});
optional symbologies: RdlxBarcodeSymbology[];
Limits the list of barcode symbologies available for creation.
By default all barcode symbologies supported by ActiveReports are available.
// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
rdlx: {
reportItemsFeatures: {
barcode: {
symbologies: ['Code_128_A', 'Code_128_B', 'Code_128_C']
}
}
}
});
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rdlx: {
reportItemsFeatures: {
barcode: {
symbologies: ['Code_128_A', 'Code_128_B', 'Code_128_C']
}
}
}
});
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
rdlx: {
reportItemsFeatures: {
barcode: {
symbologies: ['Code_128_A', 'Code_128_B', 'Code_128_C']
}
}
}
});