Hi
Is it posible to set the styling of the input field of a RadComboBox depending on wether a pre-selected item is enabled og disabled?
Hi,
I have a single series column chart & I want to remove all the column names on the x-axis for space reasons. How can I put those names in a Legend box underneath the chart?
I got a gridview which I created with following code when user clicked one of treview node I have to populate a radgrid for given departmen. I dont know how can I catch treeview click event and without making any postback populate radgrid for clicked departmen. All help will be apreciated, thank you in advance.
| //Load Root Nodes... |
| private void LoadRootNodes() |
| { |
| SqlConnection connection = new SqlConnection(ConfigurationManager.ConnectionStrings["Personelcon"].ConnectionString); |
| SqlCommand selectCommand = new SqlCommand("SELECT * FROM Department WHERE Reportsto IS NULL", connection); |
| SqlDataAdapter adapter = new SqlDataAdapter(selectCommand); |
| DataTable data = new DataTable(); |
| adapter.Fill(data); |
| foreach (DataRow row in data.Rows) |
| { |
| RadTreeNode node = new RadTreeNode(); |
| node.ImageUrl = "themes/default/entity.gif"; |
| node.Text = row["Dname"].ToString(); |
| node.Value = row["Departmenid"].ToString(); |
| node.ExpandMode = TreeNodeExpandMode.ServerSideCallBack; |
| RadTreeView1.Nodes.Add(node); |
| } |
| } |
Hi,
I have an autocompletebox in my page which uses a wcf service to fetch data. And I have a client template in autocompletebox which has #=Attributes.blabla # fields. WCF service returns the correct structure of data which has Text, Value and Attributes members and Attributes has the values I set. However the client template display these Attribute fields as undefined. I couldn't find any related item in this forum.
Can you help me?
Thanks.
I'm having a RadFileExplorer on my program and mapping it to a Shared Drive. The first level of treeview is loading as expected and when I click on the expand button on the treeview, the folders are not being loaded. And any files are not displayed on the file viewer on the right column. Below is my code, kindly let me know what could be the issue.
protected void Page_Load(object sender, EventArgs e) { try { if (!Page.IsPostBack) { string[] viewPaths = Directory.GetDirectories(@"\\vmtywebAA02\develop\", "*", SearchOption.TopDirectoryOnly); RadFileExplorer1.Configuration.ViewPaths = viewPaths; RadFileExplorer1.Configuration.SearchPatterns = new[] { "*.*" }; RadFileExplorer1.Configuration.ContentProviderTypeName = typeof(CustomFileSystemProvider).AssemblyQualifiedName; } } catch (Exception) { throw; } }
I have this:
DataStartField: 2015-08-22 00:00:00
DataEndField: 2015-08-23 00:00:00
Only 2015-10-28 appointment is displayed in radschedular.
If i try this:
DataStartField: 2015-08-22 00:00:00
DataEndField: 2015-08-23 01:00:00
I need to set a time for that day will be displayed to the date end? It not works for 00:00:00 time

Hi
i have been using the HTMLChart fine for ages now , i use a semi dynamic system for doing series and data and its been fine.
but recently i have noticed something odd , basically it start squishing up the content of the chart instead of using the full chart area, has anyone encountered this or know how to fix it.
i have attached an image
i dont apply any limitations on the ranges as i allow the chart to do it by itself based on the data inside.
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"></telerik:RadAjaxManager>
<telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />
<telerik:RadTabStrip ID="RadTabStrip1" runat="server" MultiPageID="RadMultiPage1" SelectedIndex="0" Align="Justify" ScrollButtonsPosition="Left" ScrollChildren="true">
<Tabs>
<telerik:RadTab Text="​1"></telerik:RadTab>
<telerik:RadTab Text="2"></telerik:RadTab>
</Tabs>
</telerik:RadTabStrip>
<telerik:RadMultiPage ID="RadMultiPage1" CssClass="RadMultiPage" runat="server" SelectedIndex="0">
<telerik:RadPageView ID="RadPageView1" runat="server" Height="700px" ContentUrl="WebForm5.aspx"></telerik:RadPageView>
</telerik:RadMultiPage>
how to apply the skin to the pages in the multipage