Posts by Waider Martins • 103 points
5 posts
-
1
votes3
answers116
viewsA: How to use jquery to form the date field for month and year?
I did a test with your code and it works perfectly. Only modification was to remove the duplicate id property from the input and change the call of class . date to -> $(". date") follow the…
jqueryanswered Waider Martins 103 -
1
votes2
answers60
viewsA: How to hide a table row that the information contains *
I believe that using Jquery would be more practical like this: $('tr:has(td:contains("*"))').hide();…
-
0
votes4
answers1989
viewsA: Updating data with Entity framework
You should first check if your entity ID is filled and then you could try this way doing a treatment in the object state, where Dbbase is your context and Tentity your entity, in the client case.…
-
1
votes2
answers2099
viewsA: How to export an SQL table to a . txt file?
You can do your query normally, then right-click where it is marked red in the image below and save as CSV, later open the file with Notepad, will be with headers and separated by ";" as below.…
-
1
votes1
answer950
viewsA: Foreign key Entity framework Asp.net mvc
You are placing Foreignkey "Pecasid" in the two classes (which are already related)so Migration is complaining of circular reference, remove from one of the classes preferably of the class Fix.…