Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
399 views

Hi 

 

I am currently trying to export multiple Radgrids all which contain different schemas to excel.

Radgrid 1 does a count status

Radgrid 2 does a count on phases in each status 

Radgrid 3 does a detail of each each status and phase 

 

So i want to export all 3 grids to one excel sheet is it possible through Telerik export?

 

Maria Ilieva
Telerik team
 answered on 01 Aug 2016
1 answer
292 views

Hi

Saw below link, in this page OnAjaxRequest="RadAjaxManager1_AjaxRequest" is called

http://docs.telerik.com/devtools/aspnet-ajax/controls/ajax/radajaxloadingpanel/how-to/show-ajaxloadingpanel-on-initial-page-load

My goal is to show loading image in RadTreeList when page loads

OnAjaxRequest="RadAjaxManager1_AjaxRequest" is in master page , how can i use this in ascx page

But in my environment i have like below

  <telerik:RadAjaxManagerProxy ID="proxyManager" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="RadTreeList">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="sectionID" LoadingPanelID="RadAjaxLoadingPanel1" />
                </UpdatedControls>
            </telerik:AjaxSetting>          
        </AjaxSettings>        
    </telerik:RadAjaxManagerProxy>   

 <telerik:RadTreeList ID="taskTreeList" runat="server"></telerik:RadTreeList>

 

Is there any other workaround?

Senthil

Maria Ilieva
Telerik team
 answered on 01 Aug 2016
1 answer
118 views

Hi. i would like to know how do i create a custom button for a dash bullet point

i added the following to my tool file

<tool name="dash_bullet" Text="Dash Bullet Point" />

 

i am stuck at the JS portion

Telerik.Web.UI.Editor.CommandList["dash_bullet"] = function (commandName, editor, args) {
        // what to type here?
    };

Ianko
Telerik team
 answered on 01 Aug 2016
7 answers
156 views

I am creating dynamic column the following way:

                Dim TotalColumn As New GridNumericColumn()
                grdContingentDevelopment.MasterTableView.Columns.Add(TotalColumn)
                TotalColumn.DataField = "Total"
                TotalColumn.HeaderText = "Total"
                TotalColumn.SortExpression = "Total"
                TotalColumn.HeaderStyle.HorizontalAlign = HorizontalAlign.Left
                TotalColumn.ItemStyle.HorizontalAlign = HorizontalAlign.Left               
                TotalColumn.DataFormatString = "{0:N2}"
                TotalColumn.HeaderStyle.Width = 90
                TotalColumn.ItemStyle.Width = 90
                TotalColumn.ItemStyle.Font.Bold = True

That works fine, however if i add: TotalColumn.ReadOnly = True, most of formats such as DataFormatString or HorizontalAlign stop working

Any ideas?

David
Top achievements
Rank 1
Iron
Iron
Veteran
 answered on 29 Jul 2016
1 answer
127 views

Issue: I have editable telerik RadGrid in that i have 6 columns.

1st five columns are editable columns and last column is read only column

when i am trying to enter the values using 'TAB'(Navigating to next column using tab), data is not saving in the last row(5th row) but when i am entering data manually(navigating to next column using Mouse), its saving. 

I have attached the screen shot of the RadGrid

Viktor Tachev
Telerik team
 answered on 29 Jul 2016
5 answers
390 views
Using below code "kendo ui grid groupable" feature is working fine if not using "ClientRowTemplate", but if I enable the ClientRowTemplate the groupable feature working weirdly, I mean the expand/collapse grouped rows feature stops working in this case.

Please help me on this.

Thanks in advance

<div class="demo-section kendo-grid-override">
@(Html.Kendo().Grid<PM.Entities.Model.sp_Sel_WorkOrder_Result>()
    .Name("Grid")
    .Columns(columns =>
    {
    columns.Template(@<text></text>).HeaderTemplate("<input type='checkbox' id='chkOrderAll' title='Select all to Archive' />").Width(35);
        columns.Bound(p => p.WorkOrderNo).Title("Order").Filterable(e => e.Extra(true)).Width(90);
        columns.Bound(p => p.OrderDate).Title("Order Date").Filterable(e => e
        .UI("customDatePicker")
        .Extra(true)
        .Operators(opt => opt.ForDate(dt => dt
                .IsGreaterThan("Greater Than")
                .IsGreaterThanOrEqualTo("Greater Than Or Equal To")
                .IsLessThan("Less Than")
                .IsLessThanOrEqualTo("Less Than Or Equal To")
            ))).Width(120);
        columns.Bound(p => p.CustomerName).Title("Customer").Filterable(e => e.Extra(false)).Width(180);
        columns.Bound(p => p.ParnterName).Title("Partner").Filterable(e => e.Extra(false)).Width(120);
        columns.Bound(p => p.OrderStatus).Title("Order Status").Filterable(e => e
            .UI("orderStatusFilter")
            .Extra(false)
        ).Width(120);
        columns.Bound(p => p.TelcoApprovalStatus).Title("Status Details").Filterable(false).Width(200);
        columns.Bound(clm => clm.Id).Title("Actions").Filterable(false).Sortable(false).Width(200);
    })
    //.ClientRowTemplate(Html.Partial("Order/_OrderTabs").ToHtmlString())
    .DataSource(ds => ds
        .Ajax()
        .Read(read => read.Action("GetAppWorkOrders", "WorkOrder").Data("window.pm.order.filterWorkOrders"))
        .PageSize(PageSize)
    )
    .AutoBind(false)
    .Events(e => e.DataBound("window.pm.order.onDataBound"))
    .Pageable(page => page.PageSizes(PageSizes).Messages(msg => msg.Display("{0} - {1} of {2:n0} items")))
    .Groupable()
    .Scrollable(a => a.Height("auto"))
    .Sortable(s => s.SortMode(GridSortMode.MultipleColumn))
    .Resizable(e => e.Columns(true))
    .Reorderable(reorder => reorder.Columns(true))
    .Filterable(filterable => filterable
        .Operators(operators => operators
            .ForString(str => str.Clear()
                .Contains("Contains")
                .DoesNotContain("Not contains")
                .StartsWith("Starts with")
                .EndsWith("Ends with")
            )
        )
    )
     .NoRecords(NoRecordFound)
)
</div>
Viktor Tachev
Telerik team
 answered on 29 Jul 2016
1 answer
78 views

Hi,

Im using a TabStrip+RadMultiPage with ContentUrl to load local pages. When the page is loaded the first time it has no tabs and the user can create them dynamically using some kind of radtreeview/sitedataitem. Each time I add a new tab/pageview, tabs/pages loaded before lose its content and they are reloaded.

Once they're created, it works good and can navigate from tab to tab without problems until I add other tab.

I've read this Post which explained the same issue in 2012:

http://www.telerik.com/forums/multpage-created-issue

Is there any solution or alternative to this problem?

My English is not very good sorry.

Thanks in advance

Peter Milchev
Telerik team
 answered on 29 Jul 2016
1 answer
113 views

hi all

im working on project with RadPanelBar in master page iwant to hid some items depend on user roles , for example admin most see some items hidden for other users 

how to manage this senario 

Nencho
Telerik team
 answered on 29 Jul 2016
0 answers
182 views

Hi,

I want to upload image using kendo upload Async in order in which images are selected or listed. 

Rigel
Top achievements
Rank 1
 asked on 29 Jul 2016
1 answer
88 views

Is there a way we can show total number of events/appointments for each day in the month view

 

as a hyperlink /static text in the radscheduler control.

 

By Clicking on the total number user will be redirected to new page and not the typical edit appointment

 

 

Thx

Plamen
Telerik team
 answered on 29 Jul 2016
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?