Questions tagged [web-frontend]

A refinement of the more generic frontend tag. In a web application this usually means HTML, CSS and JavaScript

Related: frontend, css, html, javascript

1441 questions
6
votes
0 answers

Do Google (gstatic) font URLs change?

I'd like to link to Google fonts in my own CSS (rather than the Google-hosted CSS) files. Do these font filenames change or are they actually static? For example, Open Sans is…
karschsp
  • 61
  • 2
  • 4
6
votes
2 answers

Chain multiple merge requests together in GitLab

Is there a way to lock one merge request's status until another merge request passes? e.g. if I am submitting API changes to an API project and frontend changes to a frontend project, I don't want the API changes to pass without the frontend…
Michael Davidson
  • 515
  • 9
  • 15
6
votes
1 answer

how to apply a material design to file input tag?

I'm designing a website using google's material design lite, in my home page I have a file input tag the problem is that I can't find the appropriate mdl classes for styling this element
Ali HS
  • 99
  • 1
  • 11
6
votes
1 answer

How to add text to a circle object in fabricJS?

I search here fabricJS-circle , and not found there is a way to add text like number 1 or 2 or 3... Inside a circle on canvas? This is my circle object on canvas: function makeStaion(left, top, stationID) { var c = new fabric.Circle({ …
Moran
  • 435
  • 2
  • 6
  • 20
6
votes
1 answer

ASP.NET MVC and Angularjs vs ASP.NET MVC and Reactjs

I have used AngularJs on top of my ASP.NET mvc projects. Even though both AngularJs and ASP.NET are based on mvc architecture I can see some advantages when using AngularJs on top of my ASP.NET mvc projects. The main advantage that I see in this…
Deepan Cool
  • 476
  • 1
  • 6
  • 16
6
votes
1 answer

Pushing updates from Python server to a web interface

I've written an algorithm in python and a web interface around that. After you submit the form and start the algorithm, I'd like to push and update data on the page as it's running. How can I accomplish this?
bkvaluemeal
  • 428
  • 1
  • 9
  • 23
6
votes
3 answers

How to exit javascript script tags early?

I have a page with a bunch of .... sections. In one of them, I get half way through it and decide I want to stop, and not run the rest of the contents of this script tag - but still run the other code segments on the page. Is there any way to do…
Benubird
  • 18,551
  • 27
  • 90
  • 141
6
votes
5 answers

Designing Web Interface for Embedded System

OS : Linux. I'm trying to find possible ways to implement web interface for my embedded system. Currently there is a shell (text based) and a small set of commands are implemented to query the device. I'm new to web development, my questions…
Sandeep Prabhu
  • 103
  • 1
  • 5
5
votes
1 answer

Could backend validation be avoided for "please type to confirm" delete pattern?

I'd like to have the community opinion about a specific scenario regarding frontend and backend validation. Online is full of resources that explain why for REST APIs should always be present both backend and frontend validation. I'm implementing a…
lucataglia
  • 728
  • 5
  • 18
5
votes
1 answer

Is Desktop Google Chrome spell check affected somehow by OS?

Does Chrome rely on the operating system to provide spell-checking on the desktop or not? Here it states that is does on mobile. But for desktop it's just stated that spell checks are generate locally by default. I see that it behaves differently on…
Alexandr Lazarev
  • 12,554
  • 4
  • 38
  • 47
5
votes
0 answers

Migrate CRA to Razzle

I have a project which was build using Create react app. I need now a server rendering for my App I found about Razzle it is the most simple method to implement. I have the /src which has all the components in addition a folder for images Also a few…
Dev01
  • 149
  • 1
  • 9
5
votes
1 answer

How to trigger a state from another component In Reactjs

Hello world I need help with this. I have a progress bar component and a component where I use the progress bar in it. And another component which supposes to trigger the progress bar. Examples structure of the APP Home.js Component which has the…
Dev01
  • 149
  • 1
  • 9
5
votes
1 answer

Combine x-show & x-text toggle in alpine.js

I am new to alpine.js and i need to toggle the innerText of an element, does anyone know ho can i combine showing an element and changing the innerText of another element? here is my code
Elchy
  • 171
  • 5
  • 16
5
votes
1 answer

Detect iOS Autocomplete Suggestion Key Press?

On iOS keyboard the top row sometimes has autocomplete suggestions. The keydown event is not fired when the user clicks on one of these autocomplete suggestions. Is it possible to listen for an event when a user clicks on one of the autocomplete…
Adam Thompson
  • 3,278
  • 3
  • 22
  • 37
5
votes
2 answers

Expected instance props to match memoized props in React 16

I am upgrading from react version 15 to 16 (16.6.1) and I am seeing this warning a bunch in the console, should I be worried? Warning: Expected instance props to match memoized props before componentDidUpdate. This is likely due to a bug in React.…
Adam Thompson
  • 3,278
  • 3
  • 22
  • 37
1 2
3
95 96