Posts by alexander Pataki • 147 points
8 posts
- 
		2 votes1 answer820 viewsQ: Return int in a select using Dapper.I need to return the idCity. If it is not found in one table, it is obligatory in the other. The return is nil. My Query public const string sql = @"DECLARE @retorno AS INT = 0; SELECT @retorno = id… 
- 
		0 votes3 answers1165 viewsA: Problem leaving automatic field width in responsive layoutI changed the html structure a little to get the final result, but here it worked well. #sidebar { display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ display: -moz-box; /* OLD - Firefox 19-… 
- 
		1 votes1 answer225 viewsQ: scroll with position:Fixed losing the right marginWhen I scroll down, the div#chat, is fixed everything straight. However the problem is that the layout breaks losing the right margin. How can I solve this problem? $(document).ready(function() {… 
- 
		2 votes1 answer167 viewsQ: Signalr loses connection when giving a PostbackThe idea is to keep the user logged in to Chat as he navigates the pages. Layout of the components on the page Layout.cshtml function iniciarChat() { var chatHub = $.connection.chat;… 
- 
		5 votes4 answers10243 viewsQ: How to align <li> items from a <ul> list below?The idea is to create a chat similar to skype, Whatsapp, etc... Where messages start to appear from bottom to top until they reach ul height so the scroll bar appears. ul { list-style: none;… 
- 
		1 votes0 answers105 viewsQ: How to get a Textbox from an Accordion that has been dynamically generated?It follows the code of how I create the Accordion private void CarregaAccordionCarros() { //DataTable da Consulta var dtTable = GetDataCarro(); AjaxControlToolkit.AccordionPane AccordionPane = null;… 
- 
		2 votes1 answer221 viewsQ: How do I not lose my Gridview lines that were dynamically created in Rowdatabound?The grid is already being mounted correctly. However when I give a Postback by clicking on some button on the page, the grid is maintained and only the headers (lines in purple) disappear. I know if… 
- 
		1 votes1 answer168 viewsQ: How to perform a UI jquery effect without losing component positioning?The idea is for the div to stay at all times centered on the page, even executing the effect, and this behavior is not observed in Firefox, where the component appears vibrating on the left instead…