I am having Radgrid with more than 100000 Records so I want to add progress bar before loading and also want to add progress bar in filters.
How to add progress bar in Radgrid winforms?
You can resolve your problem using RadWaitingBar. Add RadWaitingBar and set property AssociatedControl to your grid.
Here you can find telerik doc. with samples
this.yourRadWaitingBar.AssociatedControl=this.yourGrid;
this.yourRadWaitingBar.StartWaiting();
Related
I have created bar chart using Google data studio. Now I have to add a dimension values(For each BookingCategory in chart we have different agents. So I want to display Agents with there booking count in each bar Tooltip) on the tooltip of the barchart.
Is this Feasible to achieve ?
You can show bookings by agent in your bar chart by adding it as a secondary/breakdown dimensions and selected "stacked" in the style menu.
Hopefully I've understood your question correctly!
This Radmenu is dynamically created in code behind.Please let me know how to add scroll bar in this menu to limit the items in the submenu.
Check out this post from telerik forums.
Though it's in silverlight, I'm pretty sure you can use it as is.
Try explicitly setting the Height property of the Menu for that has a lot of menu items and that should add (Up/Down) button I believe
While not a scrollbar, you can set the DropDownHeight property of the RadMenuItem. It limits the height taken by the child menu items, and has up/down arrows to enable the scrolling.
I have a dataGrid control on the page and below this grid there are some text boxes. in some conditions I dont want to display the grid on the page. For this I have used
dg.Visibilty = Visibilty.Collapse;
It will successfully hide the datagrid, which is fine, but the space that is consumned by the grid is still disply on the page, what I want is when my grid is hidden then controls will shift up automatically just like style=display:none ;
Thanks
What you are doing should work fine.
It might be that the container which contains your data grid might have some height width assigned.
My scenario is, i need to disable the extjs grid panel and enable the scroll bar even when the grid is disabled. I can disable the grid using 'disabled:true' of GridPanel, but this property disables the vertical scroll bar of grid also. Here i need vertical scroll bar to be enabled so that i can see all the elements in the grid.
Any ideas?
Thanks,
jai.
Do you mean disable the grid so that rows can't be selected or edited? If so, the SelectionModel has a lock/unlock feature that may be what you are looking for.
I have developed the xtrareport in win-form.NET. In this, i have draw the xtracharts on to the xtrareport . in this scroll bar not active . & i want to show the date & time in the as difference of the second.I have design the reports & then show into the print preview.
what is the procedure to create the charts in to the xtrareport ?
You can't enable chart scrollbars in your report because it's just a generated image.
But you will be able to make your chart clickable and show a real 'live' chart in another dialog. And this chart's scroll bars can be enabled.
Please, review the question at Q131550. It describes a problem similar to yours and it has been already solved.