Posts by Ives Iure M. Ancelmo • 61 points
4 posts
-
1
votes1
answer98
viewsA: Form losing model list
I can point out two situations here. 1) When you submit FORM, it sends out all values that are in components within it, such as what you did with the item: @Html.HiddenFor(model => model.Id) That…
-
1
votes1
answer82
viewsA: Browse and retrieve DOM objects via getElement without using Webbrowser
You can download the content from the page using the Webclient or Httpclient, read the content and take only the value you want. You can do this, for example by using the Htmlagilitypack. The…
-
0
votes1
answer165
viewsA: How to show / hide a button inside a listview
Try instead of passing a list of objects directly to the Source control, pass an Observablecollection. I’m not sure if it’s the right answer, but it’s worth a try. Here’s an example of code. public…
-
1
votes2
answers518
viewsA: Fill in second input when typing in first
$(document).ready(function() { $('#ID_CONTROLE_RAZAO_SOCIAL').on('keyup', function() { $('#ID_CONTROLE_NOME_FANTASIA').val($(this).val()); }); }); Put this snippet of code in any Script tag, and…
inputanswered Ives Iure M. Ancelmo 61