Posts by Leandro Duarte • 61 points
7 posts
-
1
votes1
answer71
viewsQ: Dropdown menu shows no subitens
I’ve seen several posts, all with multiple responses, but I can’t get my dropdown to work on the menu. It just doesn’t open. Do I need to install something else? My code is this: <nav…
twitter-bootstrapasked Leandro Duarte 61 -
0
votes0
answers176
viewsQ: Take data that has not been changed in the form for the angular
I have a form that contains data that hasn’t been changed, like the ID and the name. When I click save, typescript does not recognize this data in the form if it is not changed. How do I get this…
typescriptasked Leandro Duarte 61 -
0
votes0
answers25
viewsQ: Created object id does not appear to be available in form
I’m using Angular with Typescript and Asp.Net MVC. I create an object and the MVC controller returns the object to me. I’m taking this object in Typescript and automatically the object ID goes to…
-
0
votes1
answer93
viewsQ: Get object that was created on the server via Angular
Good morning Personal, I am a beginner in Angular 4 (using Typescript) and I have a basic question, but I did not find an answer here. I have a typescript method that calls a method from a Webapi.…
-
2
votes1
answer116
viewsQ: Build error due to lack of constructor
I have the following classes: class Disciplina: public class Disciplina { public int Id { get; set; } public string Nome { get; set; } } interface IGenericaDAO: public interface…
-
0
votes1
answer27
viewsQ: Foreingkey is not updated
I am unable to change a foreingkey field in the database. In my case, the objects (Typoendereco = 3 and Address = 2) already exist. Follows the model (simple): public class Endereco { public int Id…
entity-frameworkasked Leandro Duarte 61 -
2
votes2
answers464
viewsQ: Save Objects Relationship Only - Entity Framework
Using the . Net platform with the Entity Framework. I am persisting an A_B class object that relates to A and B as code below: public class A_B { private int Id; private string name; private A a;…