Quantcast
Channel: User learning... - Stack Overflow
Browsing latest articles
Browse All 36 View Live

Comment by learning... on Ionic 6 ionViewWillEnter cannot read property 0 of...

@RaviAshara html added to the question.

View Article



Comment by learning... on How to do sorting with jmespath both ASC and DESC

Is second reverse needed: sort_by(reverse(sort_by(reverse(sort_by(@,&update_only)),&co‌​de)),&id). My condition is id=ASC, CODE=DESC and update_only ASC. My instructions will come via json...

View Article

Comment by learning... on Searching and deleting a node from JSON

I'll get a path to the json file, it is like a repository. The code needs to run on any json file. The key and value will get passed in as well. I cannot create a class out of it.

View Article

Comment by learning... on ASP.NET Core 6+ how to access Configuration during...

Class MyAppSettings is a better approach. How can i register this data (AddSingleton?) and then where ever i need it i just inject IMyAppSettings and then start using it?

View Article

Comment by learning... on Angular 13 reusable text input

Cannot use ngControl.control.errors?.required or get Property 'required' comes from an index signature, so it must be accessed with ['required']. When i use ngControl.control.errors['required'] then i...

View Article


Comment by learning... on FormBuilder group is deprecated

Should the validators be with upper case or lower case "v"? I have followed you and put as lower case and the warning is gone. Also, implemented the return along with setErrors as pointed out by...

View Article

Comment by learning... on Trying to get all roles in Identity

When only need to get role name: var siteRoles = await _roleManager.Roles.Select(x => x.Name).ToListAsync();

View Article

Comment by learning... on Completely Uninstall Visual Studio, multiple versions

Location of InstallCleanup.exe C:\Program Files (x86)\Microsoft Visual Studio\Installer\InstallCleanup.exe

View Article


Adding list property using reflection

I am reading a file which is likeHDR …LIN …LIN …LIN …HDR …LIN …LIN …Now LIN corresponds to line items and belong to the HDR line above it.Also, mapping for the data comes from xml which has already...

View Article


LINQ distinct on groups of information

I have multiple items (List)I need to get distinct features for the items but the issue is that each item has two features. So both features need to match on GroupTypeId and GroupId to become a...

View Article

Image may be NSFW.
Clik here to view.

Less compiler issue (probably)

I have installed the less compiler extensionhttps://github.com/madskristensen/LessCompilerWhen I create a less file and save it, it isn't building CSS and min.css file for me. In the lower right...

View Article

Image may be NSFW.
Clik here to view.

VS Code - the type or namespace name 'System' could not be found error

I am learning VS Code with .Net Core. I have installed .Net Core 3.0 SDK. I have also installed the following extensions in VS Code C# ms-vscode.csharp C# for Visual Studio Code (powered by...

View Article

no suitable method found to override onmodelCreating .net core 3.0

I have looked at a number of solutions but nothing helped so asking. I am creating a very simple MvcApp in .Net Core 3.0 and it will be using EntityFramework 3.0 as well. This app is to learn .Net Core...

View Article


The type 'System.Web.IHtmlString' is defined in an assembly that is not...

Little lost right now...I am following the following article to test/learn nested layouts.http://blogs.msdn.com/b/marcinon/archive/2010/12/15/razor-nested-layouts-and-redefined-sections.aspxAnd i am...

View Article

Proper use of "this" in JavaScript objects [duplicate]

In the below example, how can i access enums.ROCK inside the prop? As it currently stand, i get an error Uncaught TypeError: Cannot read property 'enums' of undefined. Plz check comment ERROR LINE....

View Article


Using add or push to add items to an array in groovy

I am getting the following error while push/add items to an array in groovy. $groovy main.groovyCaught: groovy.lang.MissingMethodException: No signature of method: [LProgressNotes;.push() is applicable...

View Article

iqueryable with sub query as outer join

I have a sample to look into Async calls and i need to get a count from the sub query. I know how to write this in a TSQL query but i am bit confused with the iqueryable use. Here is what i currently...

View Article


Answer by learning... for iqueryable with sub query as outer join

Could be handled in one of the following two ways. I have picked #2 for my sample. 1 : with sub queryvar singleQuery = from u in db.Users join sub in (from us in db.UserSubscriptions join s in...

View Article

Answer by learning... for Substring French text using javascript replaces the...

var byteLength = function(str) { // returns the byte length of an utf8 string var s = str.length; for (var i=str.length-1; i>=0; i--) { var code = str.charCodeAt(i); if (code > 0x7f &&...

View Article

Substring French text using javascript replaces the special characters

I can't do substring due to french special characters. My resulting string is usually more than the number specified due to special characters in french. Here is the approach i am using after doing...

View Article

Embed form in outlook email and capture response

I am trying to help people do their job. So every morning an email needs to go out to the users with a list to Approve/Reject... Don't want to send this email just like a warning, telling them to go to...

View Article


Spark write result of Array[Array[Any]] to file

I have input like following sample3070811,1963,1096,,"US","CA",,1,3022811,1963,1096,,"US","CA",,1,563033811,1963,1096,,"US","CA",,1,23After writing replacing the empty chars with 0, i am trying to...

View Article


Conditional content in Mandrill template

I am handing over dictionary keys (key value pair) to a service which in turn utilizes the api to send the email via Mandrill. Now, if my key is blank then i dont want it to be included in the email....

View Article

Answer by learning... for Conditional content in Mandrill template

I have found the answer here:https://mailchimp.com/developer/transactional/docs/templates-dynamic-content/Here is the info from the page:Conditional merge tags support traditional IF, ELSE, and ELSEIF...

View Article

Use of await with Modal Controller in ionic 6

Official docs example shows the await use asreturn await modal.present();and then getting the data back asconst { data } = await modal.onWillDismiss();However, above didn't work for me, specially when...

View Article


Answer by learning... for Ionic Runtime Error Cannot read property '0' of...

I am facing the same issue (I am learning ionic ). The only way I am able to solve it by putting the function call in both ngOnInit and ionViewWillEnter. When i declare the array then i get an error...

View Article

Answer by learning... for Ionic 6 ionViewWillEnter cannot read property 0 of...

I had to check for the null. Changing to following fixed the issue, did it for all the properties:loadedPlaces[0]?.title

View Article

swashbuckle openapi 3 write example and description for the dynamically...

My model properties definition is coming from a json file so using reflection to write the classes to be shown under schema on resulting swagger page.foreach (var model in Models) { if...

View Article

Answer by learning... for swashbuckle openapi 3 write example and description...

Following helpedhttps://github.com/domaindrivendev/Swashbuckle.WebApi/issues/162AddSchemaExamples.cspublic class AddSchemaExamples : ISchemaFilter{ public void Apply(Schema schema, SchemaRegistry...

View Article



How to do sorting with jmespath both ASC and DESC

I need help with expression for sorting both ascending and descending for the same data.I can have multiple expression separated by pipe but i can't seem to find any example that does both ASC and DESC...

View Article

Answer by learning... for ENOENT: no such file or directory, lstat...

I got into this issue after installing ngx-bootstrap> ng add ngx-bootstrapFollowing went in angular.json"styles":...

View Article

Angular 13 reusable text input

I am setting up a reusable text input that could be used with reactive forms.I am getting the following error when i add it to the declaration array of the app module and issue ng serve./ Generating...

View Article

Answer by learning... for error TS2739: Type 'AbstractControl' is missing the...

Even though this is an old thread but any one experiencing the same issue with Angular 13... kindly follow the following. Looks like the issue is resolved in Angular 14text-input.component.tsimport {...

View Article


Centralizing the API CRUD calls in WinForms

I need to do CRUD calls inside WinForms application. For this I want to create helper methods for Post, Put, Delete and Get. This method needs to return data back to me.For post and put, I might be...

View Article

Set "Start Application Pool Immediately" to true and setting username...

I am creating app pools via power shell script. Even after looking around i couldn't find how to set the "Start Application Pool immediately" to true. How can i do this? Also, if the userName/password...

View Article

javascript parsing the date time as specified timezone

I am working in boomi middle ware so can't use any libraries like moment js which has the solution that i can use like following: function toTimeZone(time, zone) { var format = 'YYYY/MM/DD HH:mm:ss...

View Article

Browsing latest articles
Browse All 36 View Live


Latest Images