I am using the telerik:dialogopener and there are two things I would like to do onload of it.
1. Hide the folder view by triggering the collapse functionality of the splitbar.
The split bar to collapse / expand the folders has an ID of "RAD_SPLITTER_BAR_COLLAPSE_Forward_RadFileExplorer1_splitBar"
Can I force a click of it somehow?
2. Sort the files by filename (not by filetype)
Clicking the heading "Filename" sorts the files how I want, but I would like it to load that way.
I see the onlick event of it... $find('RadFileExplorer1_grid_ctl00').sort('Name'))
Can I force a click of it somehow?
Is it possible to set something with FileManagerDialogParameters or in a javascript on loading of the dialog?
thanks!

| IList types = EnumHelper.ToLocalizedList(typeof(FaultyType), Resources.resources.ResourceManager); |
| foreach (KeyValuePair<Enum, string> keyval in types) |
| { |
| RadComboBoxItem item = new RadComboBoxItem(); |
| item.Text = keyval.Value; |
| item.Value = keyval.Key.ToString(); |
| radComboBoxFaultyTypes.Items.Add(item); |
| item.DataBind(); |
| } |
| <telerik:RadComboBox ID="radComboBoxFaultyTypes" runat="server" |
| onitemdatabound="radComboBoxFaultyTypes_ItemDataBound"> |
| <ItemTemplate> |
| <div onclick="StopPropagation(event); SetFaultyTypesText();" class="combo-item-template"> |
| <asp:CheckBox runat="server" ID="chk1" /> |
| <asp:Label runat="server" ID="labelFaultyTypeName" AssociatedControlID="chk1" Text='<%# DataBinder.Eval(Container, "Text") %>' > </asp:Label> |
| </div> |
| </ItemTemplate> |
| </telerik:RadComboBox> |
We are building an app which basically is converting a paper state form. The form contains around 300 questions. We will be using Telerik controls. We have tight dead line and don’t have much time for experiments.
I have created a mockup screen with Form Decorator, RadTabStrip, Radmultipage and Rad controls on the page but am concerned about performance. I haven’t bound the data yet but with just the controls it is taking time to load the page. The user will be flipping back and forth between the tab items during the data entry. I cann’t go with wizard like functionality. User should have all the data elements available. Any suggestions are greatly appreciated.
Thank you

