All Questions

2
answers

Draw a rectangle using repetition structures in Python

I have to solve the following Python activity: I need to write a program that prints a rectangle with full borders and half open: >>> digite a largura: 10 >>> digite a altura: 3 ########## # # ########## But my p...
asked on 20.04.2017 / 23:40
1
answer

What does .container mean. \ 31 25 \ 25 in CSS?

I'm doing a self-study on a responsive site. In a tutorial I got, there are in the CSS file instructions like: .container. 25 { width: 100%; max-width: 1750px; min-width: 1400px; } .container. 5 { width: 1050px; } .container....
asked on 15.03.2017 / 22:57
1
answer

Write in Rectangle - HTML Canvas

I'm using the following code var canvas = document.createElement("canvas"); canvas.width = 55; canvas.height = 20; var ctx = canvas.getContext("2d"); ctx.fillStyle = "red"; ctx.fillRect(0, 0, 100, 100); var img = document.createElement("img")...
asked on 29.01.2015 / 17:16
1
answer

Scroll hover problem

When I move the mouse button and see the content I can not use the scroll bar, it simply hides the content, can anyone help? ul>li { list-style-type: none; } ul li:hover .mostrar { opacity: 1; height: 150px; overflow:...
asked on 17.03.2017 / 20:25
1
answer

Format @ Html.Label - MVC

In my page I have one: @Html.ActionLink(linkText: "Bem Vindo(a) " + User.Identity.GetUserName() + "!", actionName: "Index", controllerName: "RelatorioTagModels1") What it generates, the "Welcome" page below: ButIdonotwantittobealink,Iju...
asked on 19.02.2017 / 02:36
2
answers

Dynamically execute a class model method from an ajax request for the controller

I'm creating a feature on my system for reloading components dynamically so that queries are executed that are allocated to model-layer classes through AJAX requests. However, as I use the MVC standard from the CodeIgniter framework, every reque...
asked on 05.01.2015 / 13:15
1
answer

Validate if one of the fields has been filled out

I'm using the Jquery Validation plugin I need to know if at least one of the fields has been filled out Fields > Phone, Mobile I tried to do this: $("#Telefone").rules("add", { required: $('#Celular').val() == '...
asked on 16.12.2014 / 17:12
1
answer

Telephone Directory Search

I have a search problem with phrases, I have a search field and I am using the LIKE operator to do this, but it is not serving me correctly, I have tried to use SOUNDEX now, but it only returns one word with the same phonetic than the other word...
asked on 09.01.2015 / 17:53
1
answer

Use of bitmap font in Haxeflixel

I'm working on a game using the framework Haxeflixel 2D and I'm having some difficulties using bitmap fonts to render accented characters. But to make it easier I'll split the question into two parts, basically what I did and what the problem...
asked on 23.12.2014 / 23:36
1
answer

Request ajax

I'm loading the menu, of the system I'm developing, through a request via ajax using jQuery, however the menu formatting is not getting as expected. My request via jQuery <script type="text/javascript"> $(document).ready(function...
asked on 19.12.2014 / 13:18