or
| //Send the parameters |
| function OnDataBinding(sender, args) { |
| var methodArguments = args.get_methodArguments(); |
| var myMethodArguments = methodArguments; |
| myMethodArguments.someParameter = "test"; |
| args.set_methodArguments(myMethodArguments); |
| } |
| [WebMethod(EnableSession = true)] |
| [ScriptMethod] |
| public Dictionary<string, object> GetOutstandingApprovalsData(int startRowIndex, int maximumRows, List<GridSortExpression> sortExpression, List<GridFilterExpression> filterExpression) { |
| Dictionary<string, object> data = new Dictionary<string, object>(); |
ExportSettings.ExportOnlyData = True
I have to set
ExportSettings.ExportOnlyData =
False
to get the hyperlink data to show up on the reports.
Thanks

I am wondering if this is the only way to have this effect (panels at the button and content changing at the top). With this approach, we lose the capability to use RadPanelItem, forcing us to implement the items on each RadPageView.
Thanks.
Hello there, I'm trying to conditionally hide a row on the server side. My code looks like this:
| protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e) |
| { |
| if (e.Item.ItemType == GridItemType.Item || e.Item.ItemType == GridItemType.AlternatingItem) |
| { |
| if (e.Item.OwnerTableView.Name == "Customer") |
| { |
| } |
| if (e.Item.OwnerTableView.Name == "CustomerDetail") |
| { |
| CustomerDetail detail = (CustomerDetail)e.Item.DataItem; |
| if (detail.IsCancelled) |
| { |
| // Hide the row, e.Item.Visible = false doesn't seem to work |
| } |
| } |
| } |
| } |