Posts by Raniel Nogueira • 33 points
4 posts
-
-1
votes4
answers37912
viewsA: Center vertically div container on Bootstrap page
Bootstrap 3 Simply call the class "centered" on the Divs with the class "col-lg-", "col-Md-", "col-Sm-" or "col-Xs-" (1-12).
twitter-bootstrapanswered Raniel Nogueira 33 -
-1
votes1
answer135
viewsA: Query with Pagedlist
Make that friend: query = query.Select(i=> new { Id = i.Id, Nome = i.Nome }).Where(x => x.Nome.ToUpper().Contains(searchString));
-
-1
votes4
answers37912
viewsA: Center vertically div container on Bootstrap page
Cara uses the class col-md-offset-4 the size of the off-set can vary according to your grid when you want to center, remembering to obey the standard of 12 columns.
twitter-bootstrapanswered Raniel Nogueira 33 -
3
votes1
answer1734
viewsQ: How to return dynamic list?
How to return a List<dynamic> in ASP.NET MVC 5 and Entityframework 6 For example I have an object with name User and mapped in my EDMX, when I do to bring the data dynamically like make an…