-
I'm using a basic multiple upload Javascript that doesn't allow to re-order files. I would like to be able to drag and drop pictures and save their new position on the server. The tricky part is that ......
-
I would like to know how can I upload a file to the API with GraphQL.Currently when I log the file, I have this :But when I execute the mutation, I have this error "400 Bad Request" :In ......
-
I started using Filepond JS and I am confused about how to call certain functions. Perhaps it is because my knowledge of ES6 is not that good, or maybe I am just overthinking this whole problem. The ......
-
I am currently using a javascript SDK that has a method to sign into a 3rd party serivce. flux.signin(); this works fineThere is another method flux.getAccountID that returns a string.For some ......
-
I am using JQuery and AJAX along with ColdFusion. I have some value in the URL http://mysitedomain.com/something/page.cfm?x=229 I want this value of x as an argument to my ColdFusion function.Can ......
-
Here are my questions: Where are the development files located for the development build in CRA? How can I move them to another location?My theory:If I can locate the files and move them to the ......
-
I have the string value as:Half Day Morning (9:00 AM - 11:30 AM) (M/T/W/TH/F)i am using coldfusion code using replace but that is not workingusing either javascript or jquery or any server side, ......
-
I had a link which is called during the page load like:<a href="#modify()#">Download</a>the above link appears in the modal window when a link is clicked from the parent ......
-
I had link and it automatically has a binding with jquery modal window which when i click, it opens the popup, i want to attach another event to it but it is just ignoring my codei have this in my ......
-
I want to use JQuery on my Coldfusion application for showing/hiding div elements with checkbox checked/unchecked within the div.Basically, in a view I show multiple divs elements, every div have ......
-
I am using cfimage for image resizing and it is working well. my Question is i want to use the cfimage to resize the image based on screen size or i can use function where it should see if the ......
-
Encountering issues with setting up Jest for React without the use of Create-React-App.I do not want to use CRA thus sticking with babel and webpack config setup which does work less Jest.Jest ......
-
I have to following request that works when I use curl:curl --location --request GET 'https://my-domain.net/manager' --header 'Authorization: Basic xyz=' --header 'Host: my-host' --header 'Trace-Id: ......
-
I have a typescript singleton class like so:export default class MySingleton {private constructor({ prop1, prop2, ... }: MySingletonConfig) { this.prop1 = prop1 ?? '......
-
For abstraction purpose, the app I work on has a custom provider that wraps a couple of other providers (like IntlProvider and CookiesProvider). The version of react-intl we use in our app is still v2 ......