Click here to Skip to main content
15,898,588 members

Comments by Member 10310320 (Top 32 by date)

Member 10310320 17-Aug-17 14:21pm View    
Thanks its working as expected.
Member 10310320 17-Aug-17 13:07pm View    
Plz see now
Member 10310320 17-Aug-17 11:14am View    
Plz check the updated code I have tried this as well.
Member 10310320 17-Aug-17 11:08am View    
I tried with Bootstrap JavaScript as well Its not working.
Member 10310320 9-Jan-17 9:57am View    
This is My model Code
public class ModelEntity:INotifyPropertyChanged
{
public ModelEntity()
{ }
private string _firstname;
private string _lastName;
private string _address;
private string _contact;
private string _dedscription;

public string FirstName { get { return _firstname; } set { _firstname = value;PropertyChang("FirstName"); } }
public string LastName { get { return _lastName; } set { _lastName = value; PropertyChang("LastName"); } }
public string Address { get { return _address; } set { _address = value; PropertyChang("Address"); } }
public string Contact { get { return _contact; } set { _contact = value; PropertyChang("Contact"); } }
public string Description { get { return _dedscription; } set { _dedscription = value; PropertyChang("Description"); } }

public event PropertyChangedEventHandler PropertyChanged;
public void PropertyChang(string PropertyName)
{
if(PropertyChanged!=null)
{
PropertyChanged(this, new PropertyChangedEventArgs(PropertyName));
}
}
}