Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
97 views
Is it possible to localize the RadEditor control on a multilingual site (en, fr) which uses variation labels for localization? If so, how would I go about it?

Terry
Terry
Top achievements
Rank 1
 answered on 08 Jul 2010
3 answers
106 views
Hi

I'm using a RadTreeView inside a RadPane (of a RadSplitter). The RadPane has the overflow: auto property set, i.e. the treeview gets scrolled. This works fine in all browsers, except for IE. Please view the result here.

I am using the 2010.1.519.20 assembly.
Since the panel (with other controls) beneath the RadTreeView gets scrolled correctly it seems like only the RadTreeView has this problem.

Thanks in advance for some help
Kind regards
Roman
Roman
Top achievements
Rank 1
 answered on 08 Jul 2010
7 answers
321 views
Hello,

I saw a lot of nice examples about master/detail grids on your example pages. But I need to display my master/detail data in a different manner.
If there is only one detail record then all data (master and detail) should be displayed in one row, if there  are multiple detailrows then the first row should display the data of the master record together with the data of the first detail row. All further detailrows should only display the detail data. The result should look like follows (text in brackets is only for description):

MasterColumn1, MasterCol2, MasterCol3, DetailCol1,DetailCol2   (first detaildata record)
                                                                   DetailCol1,DetailCol2   (second detaildata record)
MasterColumn1, MasterCol2, MasterCol3, DetailCol1,DetailCol2   (first detaildata record)
                                                                   DetailCol1,DetailCol2   (second detaildata record)
                                                                   DetailCol1,DetailCol2   (third detaildata record)
MasterColumn1, MasterCol2, MasterCol3, DetailCol1,DetailCol2   (first and only detaildata record)


I could transfer my master/detail data in a flat table structure, leaving the master data empty for subsequent detail rows but then the structure gets lost after sorting.

Another possibility could be to display the detail data in a grid nested in a column, so I would have 3 mastercolumns and one column, that displays the 2 detailcolumns in a grid. Could this be done using the RadGrid features ? All examples I saw, are displaying the nested grid below the master record.

Does anybody have an idea how to solve this task ?
Robert

Veli
Telerik team
 answered on 08 Jul 2010
3 answers
102 views
http://www.telerik.com/help/aspnet-ajax/editor_disablehidemodules.html

If I don't need any of the modules, does setting them to visible = false gain any speed or render size? 
Currently I hide the toolbar as well.  It shows as regular multi-line textbox.

            <RadEditor ID="txtAvailabilityDetails" xmltag="AvailabilityDetails" Runat="server" OnClientLoad="OnClientLoadRadEditor" AutoResizeHeight="True" Skin="Simple"
                                  BorderStyle="None" BorderWidth="0px" style="height:auto" ToolProviderID="txtMaterialsRequired"
                                  EditModes="Design" ToolsFile="~\EmptyTools.xml" Height="25px" >
                <Content/>
            </RadEditor>   
Rumen
Telerik team
 answered on 08 Jul 2010
1 answer
246 views
I have a menu bound to a database with the RadMenu TargetField bound to a database field so that some items open in _self and some in _blank.

I need to make some of the items that open a new window open a modal window (determined by the database) can this be done?

John
Princy
Top achievements
Rank 2
 answered on 08 Jul 2010
6 answers
232 views
My website is using master pages and for any custom skins that I am using, I am including the skins in the App_Themes folder,  and setting the Theme page attribute to my custom theme name.  This works great for content pages, however, I cannot set a custom skin on a RadSiteMap control inside the master page.  I tried manually referencing the custom skin file and still doesn't work.  Any advice on how to do this?
thanks,
Hector
Hector
Top achievements
Rank 1
 answered on 08 Jul 2010
1 answer
127 views
I'm new to the PanelBar and I am trying to create a vertical menu that only expands/contracts when I click on the image and not the rest of the panel header.  When I click on the rest of the panel header, I want to be able to use NavigateUrl property to assign a link to it.  Is that possible?

thanks,

kristian
Princy
Top achievements
Rank 2
 answered on 08 Jul 2010
1 answer
77 views
I have been using the Qualidator SiteAnalyzer (German Company) to get really strict sites -- unfortunately, the only item used that I cannot get to pass is connected to Telerik Grid. The problems are preceded by "Spaghetti" below, indicating spaghetti mockup.

You can download their free version of their tool at http://www.qualidator.com.

I suspect that the best solution (because of browser compatibility issues) would be to conditionally move these items to css (class) depending on the browser.
<table  
Spaghetti Markupcellspacing="0" class="rgMasterTable Css Class"  
Spaghetti Markupborder="0" id="MainContent_Summary_65af65eb-72ff-4258-b047-6b6e5f742b5f_ctl00" summary="Listing of transactions recorded against Child Account #4."  
style="Spaghetti Markupwidth:100%;table-layout:auto;empty-cells:show;"
 
Dimo
Telerik team
 answered on 08 Jul 2010
5 answers
431 views
Hi!
Is my first time in the forum and is the first time I use telerik. My problem is the next.
i have a master page, in then page have "radWindow Manager"  for send alerts, the function is fine but the images is bad. The design of the alert box is distorted. When have a form exclusive of code of telerik the design is good, but in my page is necesary other form with "runat=server".
I explaind?

Doug Beard
Top achievements
Rank 1
 answered on 08 Jul 2010
1 answer
237 views
I'm associating by code a datasource to a grid inside a repeater control:

protected void Repeater1_PreRender(object sender, EventArgs e)
    {
        foreach (RepeaterItem item in Repeater1.Items)
        {
            //Dinamically generate DataSource and associate it to Repeater Item
            ObjectDataSource ods = new ObjectDataSource();
            ods.ID = "automaticDS";
            ods.TypeName = "MachinaWeb.Services.BO_ConfigurazioneProgramma_Parametro";
            ods.SelectMethod = "getAll";
            ods.UpdateMethod = "updateParametro";
            ods.SelectParameters.Add("_idCultura", DbType.Int64, HiddenFieldIdCultura.Value);
            ods.SelectParameters.Add("_idAzienda", DbType.Int64, HiddenFieldIdAzienda.Value);
            ods.SelectParameters.Add("_idGruppoParametro", DbType.Int64, ((HiddenField)item.FindControl("HiddenFieldIdGruppo")).Value);
  
            RadGrid radGrid = (RadGrid)item.FindControl("RadGridParametriConfigurazione");
            radGrid.DataSource = ods;
            radGrid.DataBind();
        }
    }

Pagination and all works correctly. Instead trying an update it seems we have some problems. No error is thrown but i can exit from update only with cancel and in debug I see it does not reach the update function code.. Why? How can I solve this?
Pavlina
Telerik team
 answered on 08 Jul 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
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
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
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
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?