66 questions from the last 365 days
-1
votes
0
answers
43
views
ng-cloak stuck in hidden state
In an AngularJS app I am working on, there is a div looking like this:
<div ng-cloak>
The context seems fine and it should work.
However when running the app in dev mode (with Vite) the content ...
0
votes
0
answers
24
views
WKWebView: CDVWKWebViewFileXhr not found when using Salesforce SDK 13.1.0(Cordova iOS 7.1.1)
Issue Description
When building a Salesforce Hybrid Cordova app with SDK 13.0.2 and Cordova iOS 7.1.1,
the app fails with the error:
Steps to Reproduce
Create new Salesforce hybrid Cordova project.
...
0
votes
0
answers
27
views
How to maintain ui-grid pagination state in AngularJS when navigating between pages?
I’m working on an AngularJS (1.x) application that uses ui-grid with pagination.
I want to maintain the current pagination state (current page and page size) when navigating between views — for ...
0
votes
0
answers
39
views
Uncaught Error: [$injector:modulerr] received while attempting to run angular app
I receive the following error "Uncaught Error: [$injector:modulerr]" while running the following app. The code is designed to submit the data received to a SharePoint list when the submit ...
-1
votes
1
answer
65
views
Data from html disappears and doesn't not post using rest api call. When submit button is selected the form clears and data is not submitted
I have a basic HTML form that submits data to a SharePoint list. There are no errors in the code, nor do I receive anything that would cause the form not to submit to the SharePoint list. I am using ...
0
votes
0
answers
39
views
AngularJS + Compass project fails to run locally on Windows (grunt dev / SCSS )
I’m trying to run an old AngularJS project locally on Windows 11. The project uses:
SCSS with Compass
Pug templates
Grunt tasks (grunt dev / grunt build)
Node.js + Bower
According to the README, I ...
0
votes
2
answers
42
views
how to align a table column to right using PDF MAKE
I created an UI to export angularjs grid to PDF using PDF Make, it was succeeded, but I want align only two columns to right in the table. I used below code for that,
exporterPdfCustomFormatter: ...
0
votes
2
answers
156
views
Make ng-container work inside a HTML table
The ng-container does not work with ng-repeat inside a table.
This is my code.
<tbody>
<tr>
<ng-container style="border-bottom: 5px solid black" ng-repeat="...
0
votes
0
answers
163
views
Conflict between lodash.js and underscore.js
I am working on integrating a plugin into my application which resulted in lodash.js and underscore.js conflict. I have underscore.js implemented in my entire application and this plugin which I am ...
0
votes
0
answers
54
views
Recaptcha doesn't load (for some devs) in chrome, does in edge, in ASP.NET/Framework site
I work on an old .NET Framework 4.8 site serving angularjs. We load recaptcha in a script tag (as opposed to bundle.js). The render query value is replaced with what I am assuming is our key, which I ...
0
votes
0
answers
240
views
PrimeNgFreeLicense- My custom theme(preset) not working properly
app.config.ts file
import { provideHttpClient, withFetch } from '@angular/common/http';
import { ApplicationConfig } from '@angular/core';
import { provideAnimationsAsync } from '@angular/platform-...
0
votes
0
answers
45
views
In my Blazor Server application, how can I setup a control property like angular's "ng-if" that I can apply to any html tag?
I'm currently building a Blazor Server application, and migrating code from an old AngularJs / ASP.NET MVC website. Part of that migration includes translating the html in the Angular pages into C# in ...
2
votes
0
answers
113
views
Google Maps types are outdated while updating google.maps.places.Autocomplete to google.maps.places.PlaceAutocompleteElement
I am using google.maps.places.Autocomplete in my project, as you can see, and getting a warning:
"js?key=YOUR_API_KEY&libraries=drawing,geometry,places:83
As of March 1st, 2025, google.maps....
1
vote
1
answer
55
views
Custom widget for visualizing dynamic table data
While creating a custom widget for visualizing dynamic table data, I encountered some issues and would like to share a minimal working example to illustrate the problem.
JS:
self.ctx.$scope.showAlert =...
0
votes
0
answers
45
views
Angular - how to display the selected's label of dropdown on the md-table when data is bind
The md-table is bind to data assets where application_id is an integer.
The dropdown is populated with possible values with:
Value = application_id, Label = application_name
The table is editable ...