Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
116 views
I spent about an hour searching for a simple answer to this question - forgive me if i'm posting a repeat thread...

Is there any simple way to hide the first few folders in the address bar?

For example, say i have the following:
/Root/Files/Organization1/

Is there any way to have it simply display:
/Organization1/

One solution would be to map each organization folder to a virtual directory separately, but because of the fact that these are all dynamic, i don't see that as a reasonable solution.

It would appear that another course of action might be to create a mapping system like the PhysicalpathFilesystemProvider example.  But it seems like this is overkill for such a simple requirement. 

Is there an easy way to do this?

Thanks.
-RP
Fiko
Telerik team
 answered on 15 Sep 2010
1 answer
106 views
Radgridtemplate Column Header template Control find when buttonn click.I attached screenshot..

with Regrds,
S.Kannadasan
Pavlina
Telerik team
 answered on 15 Sep 2010
1 answer
115 views
I have a rad menu control on a page and when you scroll the page the radmenu stays in the same position it does not scroll. I am not using a fixed position anywhere in my css.

Thank you for any help you can offer.
Kamen Bundev
Telerik team
 answered on 15 Sep 2010
3 answers
233 views
Hi,

I have a RadGrid, grdTags. It has a datasource with a field "Value"
Inside of grdTags, I have a ToolTip ttRelatedCampaigns. Right now it displays "Value"
Inside of ttRelatedCampaigns, I'd like to display another RadGrid. It's datasource should be set by a function that takes "Value" as a parameter.

Here's what I have so far. Could someone help me out and tell me how to do this?

<h2>Currently Assigned Tags</h2>
 
<telerik:RadGrid runat="server" ID="grdTags" OnNeedDataSource="grdTags_NeedDataSource" AllowMultiRowSelection="true" AutoGenerateColumns="false" OnDeleteCommand="DeleteTag" Skin="CiscoGreen" EnableEmbeddedSkins="false">
    <ClientSettings>
        <Selecting AllowRowSelect="true" />
    </ClientSettings>
    <MasterTableView DataKeyNames="KeywordID">
 
        <Columns>
 
            <telerik:GridButtonColumn ButtonType="LinkButton" Text="Delete" CommandName="Delete" />
            <telerik:GridBoundColumn Visible="false" DataField="KeywordID" />
            <telerik:GridBoundColumn HeaderText="Value" DataField="Value" />
             
            <telerik:GridTemplateColumn UniqueName="ToolTip">
                <HeaderTemplate>
                    Related Campaigns
                </HeaderTemplate>
                <ItemTemplate>
                    <asp:Label runat="server" ID="TargetLabel" Text='<%# DataBinder.Eval(Container.DataItem, "Value") %>' />
                    <telerik:RadToolTip ID="ttRelatedCampaigns" runat="server" Width="300px" Height="300px" TargetControlID="TargetLabel">
                        <%# DataBinder.Eval(Container.DataItem, "Value") %>
                        <telerik:RadGrid ID="grdRelatedCampaigns" runat="server" OnNeedDataSource='<%# DataBinder.Eval(Container.DataItem, "Value") %>' AutoGenerateColumns="false"
                            Skin="CiscoGreen" EnableEmbeddedSkins="false">
                            <MasterTableView DataKeyNames="InitiativeName">
                                <Columns>
                                    <telerik:GridBoundColumn HeaderText="Campaign Name" DataField="Value" />
                                </Columns>
                            </MasterTableView>   
                        </telerik:RadGrid>
                    </telerik:RadToolTip>
                </ItemTemplate>
            </telerik:GridTemplateColumn>
 
        </Columns>
 
    </MasterTableView>               
</telerik:RadGrid>
Princy
Top achievements
Rank 2
 answered on 15 Sep 2010
6 answers
278 views
Hi, I tried to change the global configuration for telerik update, and existing project showing up this erro

The base class includes the field 'RadScriptManager1', but its type (Telerik.Web.UI.RadScriptManager) is not compatible with the type of control (Telerik.Web.UI.RadScriptManager).

any idea to resolve such issue for any further smooth update in telerik control?
Frank Tzanabetis
Top achievements
Rank 1
 answered on 15 Sep 2010
4 answers
157 views
Hi,

Since the border width of the editor is not the same in different browsers we have trouble to synchronize the editor's width in our CMS.

See the attached sceenshots. They were made on the Telerik demo site.

BR,
Marc
Fit2Page
Top achievements
Rank 2
Bronze
Iron
Iron
 answered on 15 Sep 2010
1 answer
172 views
Hi Telerik,
I'm implementing a grid with double click for editing row and check boxes for selecting rows. The idea is the user can edit a row, done with editing and after that other operations are applied for only marked rows by selecting corresponding check boxes. So, i used "selecting a row with check boxes" (server side) for marking rows and implement client side for double click. All from examples in Telerik documentation. Here comes the problem:
The client "GridCreated" function of double click made my grid default Empty rows when i haven't set data source yet ( I feed data source manually, not on the first PageLoad). Since this is client call, it over ride my setting data source = null in server side. What should be the way here?
Thank you
Iana Tsolova
Telerik team
 answered on 15 Sep 2010
8 answers
184 views
Dear experts,

I need to create a chart like the following sample:
http://demos.telerik.com/aspnet-ajax/chart/examples/functionality/yaxis2/defaultcs.aspx


, however in above sample, yaxis2's scale(0-50) is different from the left yaxis(0-5), how to make them to be the same scale as each other?


Thanks very much for your help!

Velin
Telerik team
 answered on 15 Sep 2010
3 answers
472 views
I've created a custom validation class, when the class throws an error the input that caused the error gets an error class added to the CssClass property!

My problem is that the "Hover" function removes this "error" class, is there any way possible to remove the Hover function on the RadTextBox Controller?

I'm adding the error css class like this:
MobileTextBox.CssClass += " error"
Dimo
Telerik team
 answered on 15 Sep 2010
1 answer
137 views
I have the follow code in place to hide the Expand/Collapse column in my grid.  The only problem is that is leaves a rather large blue speace in the details table that I would like to get rid of.

protected void rgTickets_PreRender(object sender, EventArgs e)
    {
        rgTickets.MasterTableView.ExpandCollapseColumn.Display = false;
      
        if (!Page.IsPostBack)
        {
            foreach (Telerik.Web.UI.GridDataItem item in rgTickets.MasterTableView.Items)
            {
                item.Expanded = true;                
                item.ChildItem.Cells[0].Visible = false;
            }
        }
    }
Princy
Top achievements
Rank 2
 answered on 15 Sep 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?