I have just noticed that many Ajax UIs seem NOT to support browser form field input history, that is: Values, which have been typed into a form field before, are NOT suggested later on ... This "input value suggest pattern" - e.g. based on former input values - is supported for plain old HTML forms in all browsers; and for a good reason: One just does not want to type in already typed in values - numbers, strings, dates, etc. - over and over again ...
Is this usability deficit the price we have to pay for using JS client-side frameworks
like Telerik Ajax for ASP.NET AJAX ? Or can this important usability enhancement be activated somehow when developing Telerik based Ajax UIs ?

These days more and more images decorate our web apps/sites; so sending them in one bundled rush would give us a significant performance boost :-) ! I have discovered support for CSS and script file bundling; but not for image bundling ... A product like Morfik does offer this ... Will Telerik offer that, too ?

like:GridClientSelectColumn does not have a attribute of "Checked" like a normal checkbox.
foreach (GridDataItem dataItem in RadGrid1.MasterTableView.Items)
{
if ((dataItem.FindControl("ClientSelectColumn") as GridClientSelectColumn).Checked)
// do something
}
protected override void InitializeCulture()
{
string strLanguage = Request["DropDownList1"];
Session[
"lang"] = strLanguage;
Thread.CurrentThread.CurrentUICulture = CultureInfo.CreateSpecificCulture(Session["lang"].ToString());
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(Session["lang"].ToString());
}
but it is showing error because strLanguage is getting value of "null"
How can i get the control
Thanks,
Sai
//ClientSide function call on button onClientclick
function DateValidLst()
{
var SerScheDateLst =document.getElementById('<%=dtpStartDateLst.ClientID %>').value;
if (SerScheDateLst == "") {
alert("You have selected Invalid Date. ");
return false;
}
else
return true;
}