Posts by Jhensen • 47 points
11 posts
-
1
votes1
answer867
viewsQ: Side-by-side Forms alignments with Bootstrap 4
So I have 2 text fields and I have 4 checkbox that work as a switch. I am unable to place the checkbox next to the text fields. My idea is to group the checkbox into 4, next to these text fields.…
twitter-bootstrapasked Jhensen 47 -
0
votes1
answer307
viewsQ: Calling a Modal via Html.Actionlink
I have a screen that makes the user password exchange. This screen shows the user name and when clicking on the name, it is directed to the screen to exchange password. As I would make this call…
-
0
votes1
answer54
viewsQ: Align a logo in the center of the Form
Hello. I have a login form, only I need to align a logo to the center of this form, so that this alignment is responsive. I know it has some forms, but what is the best way to make this alignment?…
-
0
votes2
answers434
viewsQ: Make a screen responsive to monitor resolution
Good morning! I have a login screen, I’m doing with bootstrap 4. How I would adjust the layout of the page so that the background image is not missing or exploded. As you can see in the image below,…
-
1
votes1
answer118
viewsQ: Adjusting Footer after migrating to Bootstrap 4
I was using the Boostrap 3 and migrated to the 4, only some things broke. I managed to solve some, but I have a problem with this footer. <div class="copyright"> <div class="container">…
-
0
votes3
answers799
viewsQ: Aligning Twiter bootstrap buttons inside a Table
My buttons inside the table are breaking the row when a column is added in the table, they are getting like this: My code ta as follows: <div class="row"> <div class="col-md-4"> @using…
-
0
votes1
answer303
viewsQ: How to do a search with Join using Entity framework Lambda and Linq
How do I search two or more tables. In the system I am doing, I have the tables Barco, Tipodeoperacaodobarco and Classebarco My mapping is as follows: HasRequired(c => c.ClasseBarco) .WithMany(c…
-
0
votes2
answers226
viewsQ: How to Insert a parameter from my system into an external URL
So, we have a website that when passing a user’s code, it shows the location of the same. Example of the URL:…
-
0
votes3
answers7413
viewsA: How to customize error pages on an ASP.NET MVC system?
You can create an Error controler by returning to the Error View according to the error generated public class ErrorController : Controller { //Erro 500 Servidor public ActionResult Index() {…
-
0
votes1
answer206
viewsQ: Using Identity with Entity Framework to relate one-to-Many methods to other tables
In my scenario a user has several craft and a vessel has several notes. So I need to relate the user to the vessel so that this user can see these notes. I’m using the MVC 5 project’s default…
-
1
votes0
answers263
viewsQ: Returning Error View after calling a Modal pop up
Hello, I have a problem with the front end of my application. I have the following method to return errors: public class ErrorController : Controller { //Erro 500 Servidor public ActionResult…