Posts by Cristiano Oliveira • 26 points
4 posts
-
0
votes3
answers3848
viewsA: I can’t connect localDB with visual studio
In my case this worked better, using "Datadirectory" in "Attachdbfilename": <connectionStrings> <add name="DefaultConnection" connectionString="Data…
-
0
votes2
answers44
viewsA: Show textarea corresponding to href
You are calling the show() in class ". res" this causes all textareas with this class to be displayed. Try this: <script> $(document).ready(function() { $.ajax({ type:'post', dataType:'json',…
-
1
votes1
answer159
viewsA: Bootstrap class does not work with htmlhelper
Try the following: @Html.TextAreaFor(model => model.Definicao, new { @class = "form-control", rows="20", @cols="50" })
asp.net-mvc-5answered Cristiano Oliveira 26 -
0
votes2
answers740
viewsA: Problems with Nan Jquery
The problem is occurring at find do obj in: "$(this). find(".item span"). html();" it does not find, comes "Undefined". what I did was add a Parent(), I made some other modifications but do not…