Dim
thisAssembly As [Assembly] = [Assembly].GetExecutingAssembly()
Dim RefAssembly As AssemblyName
For Each RefAssembly In thisAssembly.GetReferencedAssemblies()
Dim refAssembly2 As Assembly = [Assembly].Load(RefAssembly.FullName.ToString())
Dim ct2 As Type = refAssembly2.GetType("Telerik.Web.UI.RadComboBox")
Dim c2 As Object = Activator.CreateInstance(ct2)
....
I am able to set most properties from information in the database like so:
Dim prop As PropertyInfo = t2.GetProperty("EnableLoadOnDemand")
Dim propval2 As Object = Convert.ChangeType("True", Type.[GetType]("System.Boolean"))
prop.SetValue(c2, propval2,
Nothing)
However,
There is a property I would like to set that I am having trouble with.
The WebServiceSettings property is a class that does not contain a setvalue method.
I've tried creating an instance of the webservicesettings class, setting its properties and using that object to set the
webservicesettings property of the radcombobox, but to no avail.
I considered the approach of maybe using custom attributes to hold the path and method values and setting the corresponding properties client side but I didn't see that this was possible in the documentation and figured I had spent enough time on this to warrant posting and trying to get some direction.
Thanks in advance for your help.
Hi All,
Im new for telerik control.Im using two radpane.In between one splitterbar is placed.if i resize the left radpane and collapse and expand the splitter i want to set the 200px to left pane and remaining space right pane will fill.
In my case i set the left pane width as 200px but right pane i can't fill to remaining space. some white-space will be shown in right-side window.
How to resolve this issue.
Advance thanks.
| <div id="container"> |
| <div id="top"></div> |
| <div id="leftnav"> |
| <Telerik:RadPanelBar ID="RadPanelBar1" Runat="server" DataFieldID="menu_Title" |
| DataFieldParentID="menu_parent" DataNavigateUrlField="menu_NavURL" |
| DataSourceID="SqlDataSource1" DataTextField="menu_Text" |
| DataValueField="menu_Title" Height="100%" Skin="Panel" Width="100%" |
| DataMember="DefaultView" ExpandMode="SingleExpandedItem" EnableEmbeddedSkins="False" |
| OnClientItemClicked="CollapseAllItems"> |
| <CollapseAnimation Type="None" Duration="100"></CollapseAnimation> |
| <ExpandAnimation Type="None" Duration="100"></ExpandAnimation> |
| </Telerik:RadPanelBar> |
| <telerik:RadRotator ID="RadRotator1" runat="server" |
| DataSourceID="XmlDataSource1" Width="100%" FrameDuration="6000" |
| ScrollDirection="Left" ScrollDuration="800" Height="300px" |
| PauseOnMouseOver="False" ItemWidth="200px"> |
| <ItemTemplate> |
| <div class="tickdetail"> |
| <div class="clogo"><img src="<%# XPath("LogoFile") %>" alt=""/></div> |
| <div class="tickdesc" style="text-align:center"> |
| <telerik:RadTicker ID="Ticker1" runat="server" TickSpeed="50"> |
| <Items> |
| <telerik:RadTickerItem Text='<%# XPath("Description") %>' /> |
| </Items> |
| </telerik:RadTicker> |
| </div> |
| </div> |
| </ItemTemplate> |
| <SlideShowAnimation Duration="1000" Type="Fade" /> |
| </telerik:RadRotator> |
| <asp:XmlDataSource ID="XmlDataSource1" runat="server" DataFile="~/Ticker.xml"> |
| </asp:XmlDataSource> |
| </div> |
| <div id="content" runat="server"></div> |
| <div id="SubmitDiv" runat="server"></div> |
| <div id="footer"> |
| <p>© Copyright 2009</p> |
| </div> |
| </div> |
hallo,
how can i reload the page after i insert or add appointment in scheduler ?
i have tried with : OnAppointmentInsert="insertUpdate"
protected void insertUpdate(object sender, Telerik.Web.UI.SchedulerCancelEventArgs e)
{
Response.Redirect("Action.aspx");
}
Action.aspx is the page that contain Scheduler.
i have tried also with OnAppointmentCreated...but all not work.
thanx in before,
Stev