Posts by Julio Bandeira • 111 points
6 posts
-
4
votes1
answer875
viewsQ: Entity Framework auto relationship enable cascading delete
How to create a cascading deletion, in a self-relationship using the fluent api and enable this in entity framework? Code: Public class Usuario { public int UsuarioID { get; set; } public int?…
-
1
votes0
answers114
viewsQ: jquery validation problem
I’m using a form to dynamically fill out list items. I clear form fields when entering list items in the item addition act. Problem: When I perform Ubmit to record, Razor’s help…
-
1
votes1
answer381
viewsA: Sorting with jquery.dataTables.js and jquery.dataTables.columnFilter bug
I decided to put this property "bSortCellsTop": true in the Datatable function. $(document).ready(function () { $('#tbConvenios').dataTable({ "bSortCellsTop": true }) .columnFilter({ sPlaceHolder:…
jqueryanswered Julio Bandeira 111 -
0
votes1
answer381
viewsQ: Sorting with jquery.dataTables.js and jquery.dataTables.columnFilter bug
1Hello, friends I’m trying to put the filters in the first row of the table head, it almost worked if it were not for the fact of ordering, as shown in the image. Sorting cells have to be in the…
jqueryasked Julio Bandeira 111 -
-1
votes1
answer4745
viewsQ: Reference System.Web.Webpages.Razor, Version=1.0.0.0. The system cannot find the specified file
We work Aki in the company with SNV with projects. One day the server stopped working, it was a job to recover the projects. But there is a project that has a reference error with the following…
asp.net-mvcasked Julio Bandeira 111 -
5
votes2
answers1450
viewsQ: Send Model Razor with $Ajax Serialized Controller
I’m trying to send an object to controller, using ajax. The object goes to the controller with Json, but recognizes only the values of get, not post. $.ajax({ type: "POST", url:…