Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
57 views
dear sirs,

I am new to telerik, and I am trying out your controls. I have enabled filters in my grid but I would like to add a button to clear all the filters. Is this possible and how can it be done?

Thanks
Thomas
Thomas
Top achievements
Rank 1
 answered on 05 Nov 2012
1 answer
93 views
Is there any simple menu control with css like attached image which has already been used in telerik site itself. Please check the attached image that I would like to do the same.
Kate
Telerik team
 answered on 05 Nov 2012
1 answer
44 views
Hi, 

I have a RadScheduler with property AllowDelete=False. It works in all desktop browers, even with safari. But when I try it on an Ipad, the delete button appears when I select an appointment, and if I click on it, it ask me if I want to delete the appointment. It look likes a touch event problem. 

thanks Tom
Dimitar Terziev
Telerik team
 answered on 05 Nov 2012
6 answers
226 views
Hi,
I have a website (which has master page and content pages). One of the content pages has multiple Radgrid controls. The initial page load is very slow because each of the grid takes time to load the data. How can I make the page partially render on load as soon as each of the Radgrid controls has some data?
Is there any way I can make these load in parallel? 
I tried several examples from this forum but they seem to be for older version of the RadControls.
Thanks,
Maria Ilieva
Telerik team
 answered on 05 Nov 2012
4 answers
228 views
How can i apply a dateformat mask to RadDatePicker? I am using Rad 2008 Q2
Galin
Telerik team
 answered on 05 Nov 2012
1 answer
62 views
I have a simple editor with a custom toolbar button.  It shows an icon on the left side, and some text.  When I mouse over the button the layout is messed up.  Can't figure out why this is happening or how to stop it.

The issue is the same in Chrome, and IE 9 (with or without Compatibility Mode).

This is the editor code:

<style type="text/css">
    .reTool_text .MergeFields
    {
        background-image: url(../Images/Icons/OneOffLetters/download.png) !important;
        background-position: 0px !important;
    }
</style>
 
 
                <telerik:RadEditor ID="RadEditor" runat="server" Width="100%" OnClientCommandExecuting="OnClientCommandExecuting"
                    AutoResizeHeight="true" EditModes="Design" ContentAreaMode="Div">
                    <Tools>
                        <telerik:EditorToolGroup>
                            <telerik:EditorDropDown Name="InsertImage" />
                            <telerik:EditorTool Name="MergeFields" ShowText="true" Text="Insert Merge Field" />
                        </telerik:EditorToolGroup>
                    </Tools>
                </telerik:RadEditor>

Attached are a couple images showing the button before and during a mouse-over.
Bozhidar
Telerik team
 answered on 05 Nov 2012
1 answer
76 views
Hello, 

I'm searching for a control that is cabable of showing data detail up way.

Like you have a group called "vegetable" and when you expand the data, the detail is shown above the group

I need to reverse the showing way of data. Like "plan grouping function" in excel 

Example 1 :  

+ Vegetable

item1
item2
item3
 ^ Vegetable

and not 

Vegetable
Item1
Item2
Item3

Did Grid Control can do that?
Radoslav
Telerik team
 answered on 05 Nov 2012
2 answers
293 views
I am using a Date Picker when user click on calender icon it opens a date picker from which user can select date but if user wish to change entered date from input field then Rad control not allowing to user to do so. I am using following css style to style my input fields,
#input
{
    /*width:150px;*/
    float:left;
    position:relative;
    margin-right:2px;
}
above ID aligns my label field and input field in one row,
following is the common style for all input type="text"
input[type=text]
{
    width:143px;
    float:left;
    position:relative;
    margin-right:2px;
}
I don't think that any one of above causing any such problem. any suggestion why Rad Date picker is not allowing user to edit date entered in input field.
Prasad
Top achievements
Rank 1
 answered on 05 Nov 2012
2 answers
200 views
Hi everyone

I can bind master-detail grid from objectDataSource like this;

<telerik:RadGrid ID="radGridOrderProduct" ShowStatusBar="True" DataSourceID="objDsCartProductList"<br>
    runat="server" Width="100%" AutoGenerateColumns="False" AllowSorting="True" AllowPaging="True"<br>
    GridLines="None" CellSpacing="0"><br>
    <PagerStyle Mode="NumericPages"></PagerStyle><br>
    <MasterTableView Width="100%" DataSourceID="objDsCartProductList" DataKeyNames="Id"<br>
        AllowMultiColumnSorting="True"><br>
        <NestedViewTemplate><br>
            <asp:Label ID="Label1" Text='<%#Eval("Id") %>' Visible="false" runat="server" /><br>
            <telerik:RadGrid runat="server" ID="radGridOrderProductDetail" DataSourceID="objDsCartProductList"<br>
                GridLines="None"><br>
                <MasterTableView ShowHeader="true" AutoGenerateColumns="False" runat="server" HierarchyLoadMode="ServerOnDemand"<br>
                    DataSourceID="objDsCartProductList"><br>
                    <Columns><br>
                        <telerik:GridTemplateColumn><br>
                            <ItemTemplate><br>
                                <asp:Label ID="lblTotalPrice" runat="server" Font-Bold="true" Font-Size="14px" Text='<%#                (Eval("TotalPrice").ToString()) %>'></asp:Label><br>
                                <span>TL</span><br>
                            </ItemTemplate><br>
                        </telerik:GridTemplateColumn><br>
                    </Columns><br>
                </MasterTableView><br>
            </telerik:RadGrid><br>
            <asp:ObjectDataSource ID="objDsCartProductList" runat="server" SelectMethod="GetOrderProductListWithOrderId"<br>
                TypeName="MatriksEshop.Web.UserControls.Order.Control.BaseUserControl"><br>
                <SelectParameters><br>
                    <asp:ControlParameter ControlID="Label1" Name="orderId" PropertyName="Text" Type="String" /><br>
                </SelectParameters><br>
            </asp:ObjectDataSource><br>
        </NestedViewTemplate><br>
        <CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings><br>
        <RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column"><br>
        </RowIndicatorColumn><br>
        <ExpandCollapseColumn Visible="True"><br>
        </ExpandCollapseColumn><br>
        <Columns><br>
            <telerik:GridTemplateColumn><br>
                <HeaderTemplate><br>
                    <asp:Label ID="lblTotalPrices" runat="server" Text="<%$ Resources:Eshop, ProductTotal%>"></asp:Label><br>
                </HeaderTemplate><br>
                <ItemTemplate><br>
                    <asp:Label ID="lblTotalPrice" runat="server" Font-Bold="true" Font-Size="14px" Text='<%#(Eval("TotalPrice")) %>'></asp:Label><br>
                    <span>TL</span><br>
                </ItemTemplate><br>
            </telerik:GridTemplateColumn><br>
        </Columns><br>
        <EditFormSettings><br>
            <EditColumn FilterControlAltText="Filter EditCommandColumn column"><br>
            </EditColumn><br>
        </EditFormSettings><br>
    </MasterTableView><br>
    <FilterMenu EnableTheming="True"><br>
        <CollapseAnimation Duration="200" Type="OutQuint" /><br>
    </FilterMenu><br>
</telerik:RadGrid><br>
<asp:ObjectDataSource ID="objDsCartProductList" runat="server" SelectMethod="GetOrderListWithMemberId"<br>
    TypeName="MatriksEshop.Web.UserControls.Order.Control.BaseUserControl"></asp:ObjectDataSource>


But I want to detail level in this grid. I want to bind this grid with radGridOrderProductDetail dataKeyNames. How can i do this?

Best Regards
Berkant Oral
Top achievements
Rank 1
 answered on 05 Nov 2012
1 answer
106 views
Hi All,
Greeting of the day!

I am using radchart and i want to create chartseries on runtime using for loop.
Suppose, i take a int i variable and assign 5 into i first time then chart series will be created 5.

Please suggest me, how we will do this.

Thanks
Viky
Princy
Top achievements
Rank 2
 answered on 05 Nov 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?