All Questions
15,261 questions
0
votes
0
answers
24
views
Is there any textbox available which could work like a free textbox and also work as dropdown list in node.js or jQuery [duplicate]
I want to show options on mouse click in textbox like a dropdown list.
And also I could enter my own text in free textbox (If option is not showing into the listing) using node.js or jQuery.
dropdown ...
1
vote
1
answer
100
views
Datepicker not refreshing data
I´ve been trying to solve a problem I´m having beeing it the next one:
I have 2 datepickers:
Delivery Date Picker:
<div class="input-group date form_datetime times" id="date_entrega&...
0
votes
1
answer
36
views
Pagination Navigation Not Displaying All Pages in React Component
I am working on a React component that fetches NFT data and displays it in a paginated table. However, I'm having trouble with the pagination navigation. Specifically, I want to show all available ...
1
vote
0
answers
57
views
Paypal Billing Agreement approval_url using sdk
Billing agreement Paypal payment method, while we are calling order api backend initiating the order from Paypal and in response on frontend we are getting the approval_url to complete the paypal ...
0
votes
0
answers
59
views
File Upload In Angular Error 403 Access Denied
I create function in angular
onFileUpload() {
this.uploader = new FileUploader
({
url: environment.apiUrl + "/uploadImage"
,
autoUpload: true,
});
this....
0
votes
0
answers
82
views
Google Map GeoCoding API does not work for some postal codes while it works for some other postal code in the same country
I am using the below API to get coordinates using input as postal_code & country (DE in my case which is Germany):
https://maps.googleapis.com/maps/api/geocode/json?components=postal_code:13627|...
0
votes
0
answers
23
views
angularjs element manipulation
I am confused about angularjs manipulation.
How come:
angular.element("#elementID").is(':visible') ; // works
angular.element("#elementID").slideUp() ; // works
...
0
votes
0
answers
131
views
How to get the date of server on which the site is deployed on?
Our website is deployed on IIS, and the hosting server is located in the United States. However, when we access the site from Pakistan, the date displayed (e.g., in a date column) reflects our local ...
0
votes
1
answer
13
views
cordova page load is triggering unopened Modal ng-repeat scripts to run
I have a controller for template PageA. PageA has a modal on it that ONLY opens when the user clicks a button. In the Modal is an ng-repeat; using ng-init, when the ng-repeat is finished ($last) then ...
-1
votes
1
answer
36
views
how to link two fields with a connecting line when the two fields clicked.... in angularJs
i have 10 fields in the upper side , and have 10 fields in the bottom side , i need to two fields were connect with a line when i clicked two fields (one upper field and one bottom field) , in need to ...
0
votes
1
answer
51
views
AngularJS uses document.getElementById to find elements only once
When you click on a particular item, there is a page where the panel appears on the right.
Invokes the Angular JS code to act when the panel is opened.
The Angular JS code is supposed to find an ...
-1
votes
2
answers
88
views
Any alternative of using iframe ( jQuery 2.1.3 source code )?
Please see jQuery source code: https://code.jquery.com/jquery-2.1.3.js
If we search for text "<iframe" then we can see below function:
function defaultDisplay( nodeName ) {
var doc = ...
1
vote
1
answer
52
views
Ajax return data ng-click function not working
I try to pass a data in ajax return and in that data there is function that write in angular 1 ng-click like
$.ajax({
'method': 'GET',
'url': base_url +'party/selectCities?id='+state,
...
0
votes
2
answers
90
views
Ajax success data show undefind
I return a array object data Ajax success result then i print li tag but its show undefind
My Ajax code is
$.ajax({
'method': 'GET',
'url': base_url +'party/selectCities?id='+state,
...
1
vote
0
answers
49
views
First time click says form valid false and on second time click everything works in angularjs
Im using angular js for my application, im fetching data and using it for presetting values in form fields but for the first time cliks data is fetching and form validation says valid false pristine ...