Search Results

0
votes

Is there a way to asynchronously filter an IList?

If your data is already rendered to the screen, you can access the dom and manipulate the dom and hide/remove the ones you want. I've done this with jquery, but the same should be possible with AS …
1
vote

ASP.NET MVC/jQuery: Inplace Editing

Store the markup for the edit in a variable, store the current markup before the edit in a variable (so you can revert if the cancel button is pressed) and then switch it out using jquery: …