I have Form include RadRibbonBar, RadGridView (some data for test).
I have problem about change row in GridView. When I Click on GridView for change row and show one message (RadMessageBox), Then RibbonBar can not effect by mouse hover. But Change row by Keyboard is ok
Please help me!
Thanks
I have noticed a behavior issue with RadTabStrip Control, On adding more than 145 items, our application hangs and it goes to "Not responding mode". Also If we add more than 95 items to the control, the tab scroll property is not working properly.
Our client requirement demands populating more than 600 items in the control. Is there any work around to solve the issue?
-- Code--
using Telerik.WinControls.UI;
namespace Telerik_Tab
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
for (int i = 0; i < 100; i++)
{
TabItem objNewItem = new TabItem();
objNewItem.Text = "Tab " + i.ToString();
radTabStrip1.Items.Add(objNewItem);
}
}
private void AddNewTab_Click(object sender, EventArgs e)
{
for (int i = 0; i < 10; i++)
{
TabItem objNewItem = new TabItem();
objNewItem.Text = "Tab " + radTabStrip1.Items.Count.ToString();
radTabStrip1.Items.Add(objNewItem);
}
}
}
}
Hi,
I need to display space between box and text in checkbox.
The only properly who seems to handle this behaviour is the TextAlignment.
But when I set the TextAlignmet to be left the space that appear is very small.
Is there any other property that can answer my needs?
Thank you.