i have upgraded to FF5,found no issue, except few addons compatibility. just check with your favourite addons compatibility.. :)
nilkatkar
Posts
-
Firefox 5 -
How to get unique combination of values from different arraylists contained in a single mother arraylist? [modified]I have one mother arraylist which contains no. of arraylist whose count is dynamic. All childArrayList contains string values. I have to get all unique combinations for all the values in all arraylist. If motherArrayList contains 4 arraylist, then length of combination string should be 4.
modified on Wednesday, April 1, 2009 2:59 AM
-
how to hightlight a value from the dropdown list using gridview....Thanks Sneha. For adding this in my knowledge base
-
how to hightlight a value from the dropdown list using gridview....Hi Dayakar, There is an event of gridview called on RowDataBound. In that event you have to bind the dropdown text with the value i.e. coming from database. suppose your dropdownlist name is ddlResult and gridview gvResultSheet gvResultSheet_RowDataBound( object sender, GridVieRowEventArg e) { DropDownList ddlResult; if (e.Row.RowType == DataControlRowType.DataRow) { ddlResult = (DropDownList) e.findcontrol("ddlResult"); if(ddlResult != null && ddlResult.Items.Count > ) { ddlResult.SelectedValue = yourdatasource value; } } } add proper code for yourdatasourcevalue. And let me know if you have some trouble.