Hi ,
As user puts more more column for grouping i need to increase height of GroupPanelElement so that it can show all column which are used in grouping without scrolling.
Also, Want to decrease size if user remove column from grouping.
Thanks,
Shubham Jain
Hello,
We are using the Numpad version of your RadVirtualKeyboardForm and did some modifications on the layout which worked absolutely fine so far. The only thing we would still like to do is to make each key bigger because we use it on a touch screen and the standard key size appears to be too small for certain of our users.
We are using an XML file in order to load the keyboard layout and I tried to change the KeyWidth and KeyHeight in the XML file which works fine. But the layout becomes messy as the window of the keyboard only seems to grow horizontally but not vertically as seen in the screenshot. Is there a possibility to indicate the window's size somewhere?
Thank you in advance and have a nice day!
When grouping, each group shows two extra rows:
We do not need this. Is there any way to hide these?
Hi,
When the Chinese input method is used, a Chinese word is generated after the space key is pressed. For example, if you enter j, i, a, n, c, h, a, and then press space, you will get "检查". I want to filter "检查" as a filter word. What should I do? Thanks.
Hi,
I'm trying to use a PageView as a container for Grids (to eventually function as filters). ViewMode is Explorer bar as I want each page to open individually. I want each page to adjust it's height to the full height of the grid (above the grid I'm planning to include a TextBox for filtering but that's for later). Only the PageView's scrollbar should appear (when needed) not the grid's. I've been combining design settings (ie. Content Size Mode to AutoSizeToBestFit) and code for days and this combination behaves unexpectedly (dare I say it almost randomly). I've attached the source form if someone can help me out.
A few other things (see picture):
- The first time I expand one of the pages it appears gray and empty, without label, bug? (red)
- How do I get rid of the header? (marked yellow)
- Is it possible to include an icon/button aligned to the right of each Filter (to be used for clearing the selection)? (blue dots)
Jure
Hello,
I have a RadPageView control with Windows 8 theme and strip view mode.
When I disable the control, the color of the strip behind the tabs changes to a dark gray. I do not want it to change, but to stay in control color.
If I use the EnabledChange event and change the ItemContainer.BackColor of the StripElement it still shows the dark gray first.
I have seen that this is possible for example in Fluent theme, but want to use Windows 8 theme for my application.
I would love to use an easy way (SetThemeValueOverride) if possible. But I also haven't found a fitting property in the theme's style repositories and groups
I want to achieve functionality of Re-Ordering Rows In a Grid.
Requirement:
User will Select Row and Click on Up Button on UI to shift that on Up direction. Example If user select 3rd row from top and then click on up then it must shift that row to 2 position from top.
Also the which was on 2nd postion from top now comes on 3rd from top
Below code I tried but not working Properly When Rows are More than 2 in a grid:
private void btnInternalUp_Click(object sender, EventArgs e)
{
for (int index = 0; index < this.m_grdGridControl.SelectedRows.Count; index++)
{
var currentRow = this.m_grdGridControl.SelectedRows[index];
int currentIndex = currentRow.Index;
int nextIndex = NextIndex(this.m_grdGridControl, currentIndex, "up");
this.m_grdGridControl.MasterTemplate.Rows.Move(currentIndex, nextIndex);
}
}
//NextIndexMethod Return the index where row need to be shifted:
Hello,
we are using OpenEdge 10.2B and have quite a few files with OCX controls which we would like to change to use Telerik controls.
Right now I'm focused on replacing progress bars to use RadProgressBar.
What I've done so far is created a ProgressBar.cls which has the RadProgressBar and a cancel button in it's own window. The progress bar window is shown overtop of the calling window and is updated accordingly. It works well, we were just hoping we could keep them in the same window.
Is it possible to use Telerik controls in a .w file? Or are we going to need to rebuild each program that uses an OCX control to achieve this?
private void button1_Click(object sender, EventArgs e)
{
this.TopMost = true;
this.BringToFront();
radColorDialog1.Reset();
if (radColorDialog1.ShowDialog(this) == DialogResult.OK)
{
}
}