Hello,
I am using the free 30 days trial of .NETHTML5 and I am really impressed about how easy it is to have stateful web applications. We have an application that relies heavily on ajax and jquery and all sort of update panels for partial rendering and that complicates things a lot. Your fraemwork would be a solution however I came up over the same situation regarding textboxes and text changed event. In our project we have a lot of textboxes matched with other controls that are enabled/disabled whether there is some text in the paired textbox.
I understand there already is a work in progress here. I hope a new realease which will contain the fix will be available soon because I think this is a big need. Until then I tried some workarounds, by using a timer:
private void timer1_Tick(object sender, EventArgs e)
{
i++;
button1.Enabled = string.IsNullOrEmpty(textBox1.Text) ? false : true;
button1.Update();
label1.Text = i.ToString();
label1.Update();
}
The thing is that the label refreshes corectly, I can see the counter going from 1. But the button still doesn't refreshes until I move the focus from the textbox. I would be thankful for any idea.
Alex