Topic: Issue with slider input tooltip
sreenathb@revature.com pro premium priority asked 6 years ago
<input #percentInput name="range" type="range" min="0" max="100" (focus)="visibility = true;" [(ngModel)]="passPercent" (change)="changePercentage()">
Damian Gemza staff answered 6 years ago
<form class="range-field mt-5"> <div class="track"> <div #rangeCloud class="range-cloud"title="range" [ngClass]="{'visible': this.visibility, 'hidden': !this.visibility}"> <span class="text-transform">{{range}}</span> </div> </div> <input #inputname="range"type="range" (mousemove)="coverage()"min="0"max="100" (focus)="visibility = true" (blur)="visibility = false" [(ngModel)]="range" (change)="coverage()"> </form>
FREE CONSULTATION
Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.
Resolved
- User: Pro
- Premium support: Yes
- Technology: MDB Angular
- MDB Version: 6.2.2
- Device: Desktop
- Browser: All
- OS: Windows
- Provided sample code: No
- Provided link: No
mr.Jelle-Beat commented 6 years ago
I had the same issue. We ended up scrapping this feature due to time limitations. Would love to see a solution!