Hello:
I am fairly new to the world of telerik controls. I have already queried the forums and other sources to find an answer to my problem.
I have an hierarchical grid (just one master and one detail). Whenever I create an ItemCreated event, the expand function to display the detail grid using the plus button fails. I want to use the ItemCreated event to set the width of my filter boxes. Here is the code:
GridFilteringItem filteringItem = e.Item as GridFilteringItem;
//set dimensions for the filter textbox
TextBox boxStat_Num = filteringItem["Stat_Num"].Controls[0] as TextBox;
boxStat_Num.Width = Unit.Pixel(50);
As you can, this is pretty standard code.
Is this a known issue and if so, what are the possible solutions or workarounds. The version is 2008.1.415.35.
Thanks for any help in advance.
Michael
I am fairly new to the world of telerik controls. I have already queried the forums and other sources to find an answer to my problem.
I have an hierarchical grid (just one master and one detail). Whenever I create an ItemCreated event, the expand function to display the detail grid using the plus button fails. I want to use the ItemCreated event to set the width of my filter boxes. Here is the code:
GridFilteringItem filteringItem = e.Item as GridFilteringItem;
//set dimensions for the filter textbox
TextBox boxStat_Num = filteringItem["Stat_Num"].Controls[0] as TextBox;
boxStat_Num.Width = Unit.Pixel(50);
As you can, this is pretty standard code.
Is this a known issue and if so, what are the possible solutions or workarounds. The version is 2008.1.415.35.
Thanks for any help in advance.
Michael