I'm using Radzentextbox like below;
<RadzenTextBox Name="txtCred" @bind-Value="@credModel.CRED_NAME" />
in the code section, I'm retrieving data from database for editing purpose;
void LoadData(){
using (OracleDataAdapter oda = new OracleDataAdapter("some query",cs)
{
oda.Fill(dtCred);
}
credModel.CRED_NAME = dtCred.Rows[0][1].ToString();
}
However when i try to change value of the textbox it returns back to initial value. I can't edit it.
Tried to use 'Change' event etc.. but no luck.
What could be wrong?