Hi Team,
Whenever i drag any Date field in Filter Field (RadPivotGridReportFilterField) , on click of filter icon it just refreshes and not showing the filter window,
Whereas if we use field of any other data type in Filter Field it works well, also if date field is added in Row/Column Field filter works fine.
After debug I just found "Object Reference not set to an instance for object" error at attached Stack Trace.
Just for information the columns bind to Pivot Grid are dynamic not static.
Thanks
Shilpa
Hello,
I am trying to export only selected rows in excel but while exporting, item.selected is always returning false in ItemCommand, GridExporting
case "ExportToExcel":
e.Canceled = true;
GridDataItem item3 = (GridDataItem)e.Item;
if (item3.Selected)
{
string Str = item3["ITEM_ID"].Text.ToString();
}
break;
In GridExporting
protected void rgDeviceApproval_GridExporting(object sender, GridExportingArgs e)
{ foreach (GridDataItem item in this.rgDeviceApproval.MasterTableView.Items)
{
if (item.selected)
{
}
}
}
Hello,
I am trying to export only grid selected rows in excel. While doing that Item.selected is not working in Grid_Exporting Event. Why?
PLUS, is there any way in grid Item Command "ExporttoExcel" like
e.exportoutput = HTML; // In grid_exporting
by which i can modify excel output.?
Hi,
I have a playlist that is generated using only local mp4 items. Everything is working correctly but I cannot figure out how to get the playlist to auto-advance to the next video. For additional clairity, when video 1 plays and completes...i'd like it to start playing video 2...then 3...etc. Currently it just remains at blank screen at end of video 1 and video 2 must be manually clicked to proceed.
Could you please assist with proper way to accomplish this.
-Mike
I am using the RadCloudUpload control to copy files to Azure. The control itself is located in a RibbonBarTemplateItem, and the PanelContainerSelector is located in another section of the page. Everything works as expected.
For UI consistency, I want to style the Select Button for the RadCloudUpload to look like other RibbonBarButton controls. How would I go about doing that? Is there a CSS style I can specify, or a way to programmatically fire the event called by the Select Button of the RadCloudUpload control?
Thanks...
Dean
I have using TabStrip & Multi Page controls togather.
I have 4 tabs , but some how last tab's page(which using multi page control) is visible with every tab(at end of tab content), this happend after i upgraded to new version.
Can anybody tell me what causes this thing ?
Dhaval.
Hi,
I have noticed when I set ExplorerMode to Filetree
Filter box disappear. Anyway to turn it on in this mode?
thanks
Hi,
I wanted that vertical splitter to be off or expanded by default,
resulting that left file treepane is hidden. How to do this?
I have tried this but doesn't work, don'r also expanded option.
thanks
for (int i = 0; i < RadFileExplorer1.Splitter.Items.Count; i++)
{
RadSplitBar item = RadFileExplorer1.Splitter.Items[i] as RadSplitBar;
if (item != null)
{
item.CollapseMode = SplitBarCollapseMode.None;
}
}