Tagged Questions

0
votes
2answers
5k views

jquery how to find if div with specific id exists

I've got a function that appends a div to an element on click. The function gets the text of the clicked element and assigns it to a variable called 'name'. That variable is then used as the div id ...
-1
votes
1answer
56 views

MVVM Silverlight - can not assign existing control to a property of collection of custom elements in XAML

I have a class public class Item { public string A { get; set; } public Control B { get; set; } } I'm using MVVM with Silverlight. I have a custom view that is inherited ...