I have this React component where I'm trying to move focus to a specific div after the component has finished rendering.
I've tried debugging in my browser and the containerRef is never set. When I pause execution on the line that reads: if…
I have a const in a library (blueprintjs).
export const Intent = {
NONE: "none" as "none",
PRIMARY: "primary" as "primary",
SUCCESS: "success" as "success",
WARNING: "warning" as "warning",
DANGER: "danger" as "danger",
};
export…
I can add a button in my toaster of BluePrintJS using React.createElement.
Example:
Toaster
.create()
.show({
message: React.createElement('button', {}, 'MyButton'),
intent:…
I'm trying to use BlueprintJs in a small project and I'm coming up with a problem where the style does not appear as I would expect. As I'm sure it's something quite simple I hope someone can point me in the right direction.
I want to use the Tabs…
In a React/BlueprintJS app, I have a TagInput. I need to access the string value of any Tag when clicked. For simplicity, let's assume I just need to console.log(value).
I can't seem to locate the Tag's value in the callback. Based on the…
In my React project I've installed blueprintjs as a dependency.
When I do this in code:
import {Popover} from "@blueprintjs/core";
...
render() {
...
I don't get any…
I am doing automation testing using CucumberJS with Selenium Webdriver. I am trying to click on the radio button in a form using this piece of code :
try {
let gender = driver.findElement(By.css("input[type=radio][value=Miss.]"))
gender.click()
…
I'm using controls from BlueprintJS in my application and there is an attribute on the input box called "small" that adds the class ".bp3-small" to it to reduce the fontsize and component height. However this doesn't seem to be available on the…
I am running into trouble trying to set the input ref value on a blueprintjs Select component. Visually, the component works fine but I need the current highlighted option to be read by a screen reader. For some reason the screenreader(NVDA) reads…
I am trying to set up a Menu with blueprint.js' Popover, Menu and MenuItem classes.
I've so far tried it the controlled and uncontrolled way but both ways I just run into a dead end.
Controlled Menu: I tried setting up hotkeys for the navigation so…
Has anyone implemented infinite scrolling in BlueprintJS table ?
My requirement is to fetch the table date from an api as the user scrolls the table.I have tried with onCompleteRender props of BlueprintJS table but it does not meet my…
I'm using Filter Input from blueprintjs in a reactjs project, but the style doesn't load correctly, here's my code:
Assigning.jsx
import './Assigning.scss';
export default class Assigning extends Component {
render() {
return (
I have already read several issues about displaying icons in former versions of blueprintjs. Mine concerns blueprint 2.0.0-rc.2 and feel it's an importing problem.
I am using webpack and importing blueprint v2 the following way:
In index.html: