RadGrid1.EnableLinqExpressions = false
But I need this set to true because I am using it with LINQ. Can I make RadGrid to be not case sensitive when option above set to true?
Sincerely
Evgeny Vdovin
| protected void PreRenderEventHandler(object sender, EventArgs e) |
| { |
| foreach (GridItem item in MasterTableView.Items) |
| { |
| if (item is GridEditableItem) |
| { |
| GridEditableItem editableItem = item as GridDataItem; |
| editableItem.Edit = true; |
| } |
| } |
| Rebind(); |
| } |
| } |
| function ShowInsertForm(purchaseOrderID) |
| { |
| window.scrollTo(0,0); |
| var url; |
| url = "<%=Constants.SitePages.TruckHaulInfo%>?<%=Constants.Request.PurchaseOrderID%>=" + purchaseOrderID; |
| var oWnd = radopen (url, null); |
| oWnd.maximize(); |
| oWnd.set_behaviors(Telerik.Web.UI.WindowBehaviors.Close); |
| oWnd.set_modal(true); |
| oWnd.show(); |
| } |
I have even tried to reshow the scrollbars using the old trusty:
document.documentElement.scroll = "yes";
document.documentElement.style.overflow = "visible";
or
document.body.scroll = "yes";
document.body.style.overflow = "visible";
but this does not help. How do I solve this issue once and forever? When the radwindow goes away I want my scrollbars to be there if they were they before the radwindow was opened.
Help.......
Jason
this.RadAjaxManager.ResponseScripts.Add(@"Sys.Application.add_load(function()
{radalert('Constituent Information Entered!', 250, 100);})"
);