Posts by Eduardo Cucharro • 86 points
5 posts
-
2
votes2
answers546
viewsA: Lock/fade screen during postback
Being a web application, necessarily with javascript and ajax, one complements the other. You can use plugins like jquery.UI to make your work easier!
-
0
votes2
answers1399
viewsA: How to load background fade in css?
Hello, you can set the background in an element outside the content, example: <div class="meuBackground"><section><p>Seu conteudo aqui</p></section></div> Define…
-
1
votes2
answers365
viewsA: Recover data from a Linq SQL query with Join
By running select new {} in your Entityframework query, you are creating an Anonymoustype. Unfortunately it is not possible to cast an Anonymous type for a defined type (Laboratorio). The solution…
-
3
votes5
answers7871
viewsA: Add onclick event to created element with createelement
You could do it like this: for( var i = 0; i < this.fieldsCount; ++i ) { var button = document.createElement('button'); i === this.current ? button.addClass('fs-dot-current') :…
javascriptanswered Eduardo Cucharro 86 -
1
votes2
answers153
viewsA: View condition does not work
Use Object.Referenceequals(null, Viewbag.Items). Viewbag and Dynamic type, as this type is variable there is no native comparator like string.equals.
asp.net-mvc-5answered Eduardo Cucharro 86