Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi guys,
i want to build a slider similar like in this picture here
Before i design the slider, i just want to read values dynamically from a simple textbox. I managed that without problems by creating a DOM-Element (input) with js
But as i try changing the value, it just stays static (it still returns the value 800) 😞
Does anyone have i idea how to read the values from an textbox when i change the value on it?
private createHelpLinkElement3(): Element {
let linkElement = document.createElement("input");
linkElement.setAttribute("value", "800");
linkElement.setAttribute("class", "helpLink3");
return linkElement;
};
Here you can download my project
Solved! Go to Solution.
Hi @az2451
We'd recommend to bind a keypress event to catch each change:
this.helpLinkElement3.addEventListener("keypress", (event) => {
this.getx = parseInt((event.target as HTMLInputElement).value);
console.log(this.getx);
});
Ignat Vilesov,
Software Engineer
Microsoft Power BI Custom Visuals
Hi @az2451
We'd recommend to bind a keypress event to catch each change:
this.helpLinkElement3.addEventListener("keypress", (event) => {
this.getx = parseInt((event.target as HTMLInputElement).value);
console.log(this.getx);
});
Ignat Vilesov,
Software Engineer
Microsoft Power BI Custom Visuals
You are so amazing 🙂
Thank you!
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |