This is a migrated thread and some comments may be shown as answers.

Space between words in Filter Menu.

2 Answers 68 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Jiju
Top achievements
Rank 1
Jiju asked on 14 Nov 2011, 12:35 PM
Hello

I am a Sharepoint developer working with Telerik 2010. I would like to know if there is any possibility to have space between the FilterMenu items such as EqualTo, EndsWith etc as Equal To, Ends With etc respectively.

Thanks in advance
Jiju John.

2 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 14 Nov 2011, 12:52 PM
Hello Jiju,

Try the following CSS.
CSS:
<style type="text/css">
.RadMenu .rmVertical .rmText
{
 letter-spacing:8px !important;
}
</style>

-Shinu.
0
Accepted
Jayesh Goyani
Top achievements
Rank 2
answered on 14 Nov 2011, 01:03 PM
Hello Jiju,

void RadGrid1_PreRender(object sender, EventArgs e)
    {
        GridFilterMenu menu = RadGrid1.FilterMenu;
        for (int i = 0; i < menu.Items.Count; i++)
        {
            if (menu.Items[i].Text == "EqualTo")
            {
                menu.Items[i].Text = "Equal To";
            }
             
        }
    }


Thanks,
Jayesh Goyani
Tags
Grid
Asked by
Jiju
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Jayesh Goyani
Top achievements
Rank 2
Share this question
or