Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
79 views
We are trying to construct a File Explorer type of experience for browsing a file structure that is stored in our database. I explored the RadFileExplorer and found that, while it's tree view was good, the file view side would not show a radgrid with customizable/filterable columns without a whole lot of work, so I'm constructing our file explorer by using  a RadTreeView and a RadGrid instead.

Due to the size of the file structure, I decided to use the RadTreeView's LoadOnDemand. I'm currently using ExpandMode=WebService, since I have to go back to the database for the "values" of the nodes and use my business objects to populate the "text" -- but I don't want to have to deal with the overhead of a postback.

I load the root of the file structure during TreeView_Load:
if(!this.IsPostBack)
{
   tvFolders.Nodes.Add(new RadTreeNode("Files", "1"){ExpandMode = TreeNodeExpandMode.WebService});
}

This is working great when I want to start my file explorer in the root node. However, there are cases in my app when I want to start in a subdirectory. (For example: Files/Folder/SubFolder)

I would like to expand the "Files" node (and populate it's children), the "Folder" node (and populate it's children), and select the "SubFolder" node (so that it fires the SelectedIndexChanged event, which populates the RadGrid). I don't know at design time how deep into the tree I'll need to load, but I will know the entire path (both by Text and by Value) by the time I need to populate the tree in OnLoad.

Is this possible with WebService expand? If so, how can I do it? I've tried just setting Node.Expand=true, but that doesn't seem to populate all the children.

--Christina
Nikolay Tsenkov
Telerik team
 answered on 11 Aug 2011
3 answers
122 views
I cannot hear any CAPTCHA audio in IE8 (for Windows 7), although it works fine in Firefox on the same computer. I have tried multiple computers (all similar configuration) in our office and all have the same issue.

This applies to my own code as well as the sample on demos.telerik.com.

I have the Quicktime add-in installed and enabled for all sites, but do not have Quicktime Player installed.

There is no error, just no sound.

What is required for audio to work and if Quicktime is not installed should it not prompt to install the add-in or revert to the WAV files?
Slav
Telerik team
 answered on 11 Aug 2011
1 answer
92 views
I need to create a drop down menu for a toolbar like the attached image "tbdropdown.png". (I also attached a second image "tbdropdown2.png" to further illustrate the concept.)

Can I do this with the toolbar component? If not, what Telerik components should I use to accomplish this task?

I thought about taking a RadButton and making a dropdown pop below it, and sticking that in the toolbar, but I can't figure out how to make a drop down similar to "tbdropdown.png".

Any assistance as to where I should start, and what components I should use would be greatly appreciated. Thanks!
Kate
Telerik team
 answered on 11 Aug 2011
1 answer
91 views
Hello,

I am getting a "File Not Found" Error when binding SPRadGrid and SPRadListView to a SharePoint List data source.

Please see screen shot.

Can this be fixed? 

Thank you,

David


Tsvetoslav
Telerik team
 answered on 11 Aug 2011
0 answers
39 views
Hello people,

I'm using 3 RadListBoxes with 2 RadGrids on the same page aspx, but i' d'ont know how to arrange them in the page...

I'm using a <table> to group them in columns but it's not working...I d'ont like the appearence

Can you help me?

My code aspx is the next:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="AssignInvoices.aspx.cs" Inherits="iConnect.InvoicesScaling.Views.AssignInvoices"
    Title="AssignInvoices" MasterPageFile="~/Shared/Silver.master" %>
  
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<asp:Content ID="content" ContentPlaceHolderID="DefaultContent" runat="Server">
    <script src="../Shared/js/jquery-1.6.2.min.js" type="text/javascript"></script>
    <script src="../Shared/js/jquery.tooltip.js" type="text/javascript"></script>
    <script type="text/javascript" src="../Silverlight.js"></script>
    <h1 style="text-align: center;">
        Assign Invoices</h1>
    <br />
    <table>
        <tr>
            <td>
                <telerik:RadListBox ID="RadListBox1" runat="server" AllowReorder="True" Skin="Black"
                    Sort="Ascending" Height="400px" Width="250px" EnableDragAndDrop="True">
                    <ButtonSettings TransferButtons="All"></ButtonSettings>
                    <HeaderTemplate>
                        <h5 style="color: White; text-align: center">
                            USERS</h5>
                    </HeaderTemplate>
                </telerik:RadListBox>
            </td>
            <td>
                <telerik:RadListBox ID="RadListBox2" runat="server" SelectionMode="Multiple" EnableDragAndDrop="True"
                    Height="400px" Width="150px" AllowReorder="True" Skin="Black">
                    <ButtonSettings TransferButtons="All"></ButtonSettings>
                    <HeaderTemplate>
                        <h5 style="color: White; text-align: center">
                            GROUPS</h5>
                    </HeaderTemplate>
                </telerik:RadListBox>
            </td>
            <td>
                <telerik:RadListBox ID="RadListBox3" runat="server" EnableDragAndDrop="True" Height="400px"
                    Width="150px" AllowReorder="True" Skin="Black">
                    <ButtonSettings TransferButtons="All"></ButtonSettings>
                    <HeaderTemplate>
                        <h5 style="color: White; text-align: center">
                            STAGING</h5>
                    </HeaderTemplate>
                </telerik:RadListBox>
            </td>
            <td>
                <telerik:RadButton ID="RadButton1" runat="server" Text="Assign" Skin="Black" Width="100px"
                    Height="50px" OnClick="RadButton1_Click">
                </telerik:RadButton>
                <br />
                <br />
                <telerik:RadButton ID="RadButton2" runat="server" Text="Unassign" Skin="Black" Width="100px"
                    Height="50px" OnClick="RadButton2_Click">
                </telerik:RadButton>
            </td>
            <td>
            </td>
            <td>
            </td>
            <td>
                <h1>
                    Total Invoices Resume </h1>
                <telerik:RadGrid ID="RadGrid1" runat="server" Skin="Windows7">
                </telerik:RadGrid>
            </td>
        </tr>
        <tr>
            <td>
            </td>
            <tr>
                <td>
                </td>
                <td>
                    <telerik:RadGrid ID="RadGrid2" runat="server" Skin="Windows7">
                    </telerik:RadGrid>
                    <h1>
                    Total Invoices Resume </h1>
                <telerik:RadGrid ID="RadGrid3" runat="server" Skin="Windows7">
                </telerik:RadGrid>
                </td>
            </tr>
        </tr>
    </table>
    <br />
    <br />
</asp:Content>
Ricardo
Top achievements
Rank 1
 asked on 11 Aug 2011
1 answer
84 views
Is there a way to make the text of RadSliderItems vertical?

Example
Niko
Telerik team
 answered on 11 Aug 2011
1 answer
127 views
Hi,

I was wondering what the preferred method of using a custom skin (all controls) within a theme and what the possible impacts of combining the 65+ css files (base + skin as I need to tweak some of the base styles) into a smaller number so they load correctly in IE (31 style sheet limit issue).

Thanks
Gavin.

Dobromir
Telerik team
 answered on 11 Aug 2011
1 answer
113 views
Hi,

Can by any mean i fix the width of a bar in a bar chart.

as if the number of bars are less ,then each bar takes enormous width whereas if the number of bars are more ,then  all the bars  shrinks to very small width.


can any one suggest me any fix for this .

ASAP.


Evgenia
Telerik team
 answered on 11 Aug 2011
1 answer
51 views
Hi, I'm trying to create a custom FilterTemplate but I'm having trouble maintaining the same look and feel as the other columns filters.
How can I insert a filter button (like the one attached) with it's menu just as in the other columns?

Regards,
Santiago.
Pavlina
Telerik team
 answered on 11 Aug 2011
1 answer
38 views
I am using RadEditor for SharePoint in SP 2010 SP1. I have looked at video on how to add the radeditor for sharepoint webpart to a page.

I am a bit confused and need some help.

1. I want to set Telerik properties of the webpart. for example I want to have access to all of the toolbars for rad editor and not just the default ones. How do I do that?

2. It looks like the only way a user can edit the content is for them to click on the webpart dropdown menu and select edit webpart. This makes the user editing process unecessarily complex. I.e check out page, edit page, edit webpart etc. In vanilla SP when a user edits a page they can select the sp editor webpart and can immediately start editing without haveing to select an edit web part option.

Am I missing something or is this the way it works?

3. Is it possible to add the radeditor webpart to a SP page layout? If I try inserting a web part within SPD  the sharepoint radeditor is not listed and I cannot see the misc section where it is located.

Rumen
Telerik team
 answered on 11 Aug 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?