Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
192 views

Hi,

Is there a way , that whenever a value changes in a column, the paging will start in a new page (sort of like page break).

for example if i set page size to 4 and I have a table like this, I want to start eqipi

---------------page 1 --------------
equipid  amount notes

1              5  

1              3

1             5           test

1             34

---------------page 2 --------------

1           10           test2 

1            23  

 

 

---------------page 3 --------------

2          22 

2          45

2          3

Vessy
Telerik team
 answered on 28 Apr 2021
1 answer
185 views

Your fancy new forums interface isn't working. If I search for "AllowKeyboardNavigation" I get lots of results. If I filter by the tag "Grid" I surprisingly get no results.

I imagine you are getting a significantly increased number of ticket submissions because of the inability to find threads.

Anyhow, my issue is this. I have a grid with 100% height and scrolling and AllowKeyboardNavigation="true". When the user toggles the arrow down key,  subsequent items in the grid are selected, which is great. However when the item is too far down to be seen w/o scrolling, the arrow key doesn't force a scroll which makes it impossible for the user to see the selected item. I'm guessing there must be some sort of property setting or method to avoid this.

Attila Antal
Telerik team
 updated answer on 28 Apr 2021
1 answer
123 views

When using a ClientTemplate the percent drag handle is not visible

<ClientTemplate>
<div
            <strong class="title">#= title # </strong>
</div>
</ClientTemplate>
Peter Milchev
Telerik team
 answered on 27 Apr 2021
1 answer
143 views

Hi sri,

 

             I create bar chart dynamically from server side and call function OnClientSeriesClicked this function in client side like this i call url

    function BarSeriesClicked(sender, args) {
       
  $('#ctl00_ContentPlaceHolder1_ChartList1_hdcatogery').val(args.get_category());
        var ss = $('#ctl00_ContentPlaceHolder1_ChartList1_hdcatogery').val();
        //alert($('#ctl00_ContentPlaceHolder1_ChartList1_hdcatogery').val());
        window.location.replace("http://localhost/zxc/ChartList.aspx?ID=" + ss);
           
    }

chart open but what color click that color not appear,

 

so i need the what color i click that color show drildown chart.

Vessy
Telerik team
 answered on 27 Apr 2021
1 answer
203 views

I've no long taken over an app and something that's puzzling me is it seems the previous develop has registers controls in the RadAjaxManager like this? Is it an appropriate use of the manager to register controls in this way?  Registering the AjaxManager to itself to update other controls?!?

<telerik:RadAjaxManager ID="AjaxManager" runat="server" OnAjaxRequest="AjaxManager_AjaxRequest" EnablePageHeadUpdate="false">

<AjaxSettings>

<telerik:AjaxSetting AjaxControlID="AjaxManager">

<UpdatedControls>

<telerik:AjaxUpdatedControl ControlID="pnlAttendStatus" />

</UpdatedControls>

</telerik:AjaxSetting>

</telerik:RadAjaxManager>

     

Vessy
Telerik team
 answered on 27 Apr 2021
1 answer
147 views

An issue was reported to me about the RadEditor moving h4, and related tags, out of <summary> tags.

In looking for information online on if the tag combinations are allowed, I found this link:    https://developer.mozilla.org/en-US/docs/Web/HTML/Element/summary

Here is the specific example:
    <details open><summary><h4>Overview</h4></summary><ol><li>Cash on hand: $500.00</li><li>Current invoice: $75.30</li><li>Due date: 5/6/19</li></ol></details>

 

When I paste that example into the html editor of the RadEditor it moves the <h4> out of the summary tag and below it.

 

Is that correct behavior?

Rumen
Telerik team
 answered on 27 Apr 2021
5 answers
200 views
Hi Team
We upgraded one of the application from windows2003(IIS6) server to windows server 2008(IIS7.5),
In old environment radeditor control  is working as per functionality in IE11 and IE9.
After upgrade its working in IE9 but some of the functions are breaking in IE11.
When we trying to insert something from the tools (symbols,tables,images etc) ,It is inserting in starting of the first line ,in place of cursor location.

Site is running in classic mode.

Thanks.
Rumen
Telerik team
 answered on 27 Apr 2021
4 answers
133 views

We have Telerik UI for ASP.NET Ajax version 2018.3.910.45.

I have a requirement to default a particular legend to disabled so that the associated data points are not shown. How can I do this?

 

Vessy
Telerik team
 answered on 27 Apr 2021
1 answer
224 views

I want to show Sort Icon on all the columns by default when the RADGrid/DetailTables columns loads for the first time. Currently, the Sort Icon appears only after user clicks on any column.

1. Is there any property on RADGrid that shows Sort Icon by default on RADGrid/DetailTables columns?

2. on the other hand I want have toold tip on first column of the RADGrid/DetailTables columns?

 

 <telerik:RadGrid RenderMode="Lightweight" ID="rgView" ShowStatusBar="true" runat="server" 
            PageSize="12" AllowMultiRowSelection="False"
            AutoGenerateColumns="False" AllowSorting="True" CssClass="grid-forecast"
            OnDetailTableDataBind="rgView_DetailTableDataBind" OnNeedDataSource="rgView_NeedDataSource" >
             <ClientSettings>
                    <Scrolling ScrollHeight=""></Scrolling>
                </ClientSettings>
            <PagerStyle Mode="NumericPages"></PagerStyle>
           <MasterTableView HeaderStyle-CssClass="goalGridHeader" DataKeyNames="MonthNumber" AllowMultiColumnSorting="True" GroupsDefaultExpanded="false">                      
                 <DetailTables>
                    <telerik:GridTableView DataKeyNames="CenterID" Name="ForecastByCenter" Width="100%" HorizontalAlign="Left">
                        <Columns>         
                    <telerik:GridBoundColumn SortExpression="CenterName" ShowSortIcon="true" AllowSorting="true" ItemStyle-HorizontalAlign="Left" ItemStyle-VerticalAlign="Middle" UniqueName="CenterName" HeaderText="Center Name" HeaderButtonType="TextButton" 
                        DataField="CenterName">                                      
                        
                    </telerik:GridBoundColumn>
                    <telerik:GridBoundColumn SortExpression="NewEO" HeaderText="New+EO" ShowSortIcon="true" HeaderButtonType="TextButton" ItemStyle-BackColor="" ItemStyle-CssClass="col-type1" HeaderStyle-CssClass="hd-type1"
                        DataField="NewEO">
                    </telerik:GridBoundColumn>
                    <telerik:GridBoundColumn SortExpression="Absent" HeaderText="Absent" ShowSortIcon="true" HeaderButtonType="TextButton" ItemStyle-BackColor="" ItemStyle-CssClass="col-type1" HeaderStyle-CssClass="hd-type1"
                        DataField="Absent">
                    </telerik:GridBoundColumn>
                    <telerik:GridBoundColumn SortExpression="EC" HeaderText="Enrollment" ShowSortIcon="true" HeaderButtonType="TextButton" ItemStyle-BackColor="" ItemStyle-CssClass="col-type1" HeaderStyle-CssClass="hd-type1 hd-top"
                        DataField="EC">
                    </telerik:GridBoundColumn>
                    <telerik:GridBoundColumn SortExpression="CYNewEO" HeaderText="CY New+EO" ShowSortIcon="true" HeaderButtonType="TextButton"   ItemStyle-CssClass="col-type2" HeaderStyle-CssClass="hd-type2"
                        DataField="CYNewEO">
                    </telerik:GridBoundColumn>
                    <telerik:GridBoundColumn SortExpression="CYAbsent" HeaderText="CY Absent" ShowSortIcon="true" HeaderButtonType="TextButton"  ItemStyle-CssClass="col-type2" HeaderStyle-CssClass="hd-type2 hd-top"
                        DataField="CYAbsent">
                    </telerik:GridBoundColumn>
                    <telerik:GridBoundColumn SortExpression="CYEC" HeaderText="CY Enrollment" ShowSortIcon="true" HeaderButtonType="TextButton" ItemStyle-CssClass="col-type2 n3" HeaderStyle-CssClass="hd-type2"
                        DataField="CYEC">
                    </telerik:GridBoundColumn>
                     <telerik:GridBoundColumn SortExpression="LYNewEO" HeaderText="LY New+EO" ShowSortIcon="true" HeaderButtonType="TextButton" ItemStyle-CssClass="col-type3" HeaderStyle-CssClass="hd-type3 n1"
                        DataField="LYNewEO">
                    </telerik:GridBoundColumn>
                    <telerik:GridBoundColumn SortExpression="LYAbsent" HeaderText="LY Absent" ShowSortIcon="true" HeaderButtonType="TextButton" ItemStyle-CssClass="col-type3" HeaderStyle-CssClass="hd-type3 hd-top"
                        DataField="LYAbsent">
                    </telerik:GridBoundColumn>
                    <telerik:GridBoundColumn SortExpression="LYEC" HeaderText="LY Enrollment" ShowSortIcon="true" HeaderButtonType="TextButton" ItemStyle-CssClass="col-type3" HeaderStyle-CssClass="hd-type3"
                        DataField="LYEC">
                        
                    </telerik:GridBoundColumn>                    
                        </Columns>
                    </telerik:GridTableView>
                </DetailTables>
           <Columns>               
                <telerik:GridBoundColumn DataField="MonthName" HeaderText="Month" ItemStyle-CssClass="col-hd" HeaderStyle-CssClass="hd-type0"  />
                <telerik:GridBoundColumn DataField="NewEO" HeaderText="New+EO"  ItemStyle-BackColor="" ItemStyle-CssClass="col-type1" HeaderStyle-CssClass="hd-type1"/>
                <telerik:GridBoundColumn DataField="Absent" HeaderText="Forecast Absent"  ItemStyle-CssClass="col-type1" HeaderStyle-CssClass="hd-type1 hd-top"/>
                <telerik:GridBoundColumn DataField="EC" HeaderText="Enrollment"  ItemStyle-CssClass="col-type1" HeaderStyle-CssClass="hd-type1 n3"/>
                <telerik:GridBoundColumn DataField="CYNewEO" HeaderText="New+EO"  ItemStyle-CssClass="col-type2" HeaderStyle-CssClass="hd-type2" />
                <telerik:GridBoundColumn DataField="CYAbsent" HeaderText="Actual Absent" ItemStyle-CssClass="col-type2" HeaderStyle-CssClass="hd-type2 hd-top"  />
                <telerik:GridBoundColumn DataField="CYEnrollment" HeaderText="Enrollment" ItemStyle-CssClass="col-type2 n3" HeaderStyle-CssClass="hd-type2" />
                <telerik:GridBoundColumn DataField="LYNewAndEO" HeaderText="New+EO" ItemStyle-CssClass="col-type3" HeaderStyle-CssClass="hd-type3 n1"/>
                <telerik:GridBoundColumn DataField="LYAbsent" HeaderText="LY% Absent" ItemStyle-CssClass="col-type3" HeaderStyle-CssClass="hd-type3 hd-top" />
                <telerik:GridBoundColumn DataField="LYEnrollment" HeaderText="Enrollment" ItemStyle-CssClass="col-type3" HeaderStyle-CssClass="hd-type3" />
                <telerik:GridBoundColumn DataField="ForecastPerCent" HeaderText="% Forecast Completed" ItemStyle-CssClass="col-type4" HeaderStyle-CssClass="hd-type4" />
            </Columns>
            </MasterTableView>
        </telerik:RadGrid>

 

 

Attila Antal
Telerik team
 answered on 26 Apr 2021
7 answers
1.1K+ views

According to the page here : http://www.telerik.com/aspnet-ajax/tech-sheets/browser-support Edge is a supported browser but the RadComboBox controls are not being displayed correctly for me and my users. See attached.

What is the issue here?

Rumen
Telerik team
 answered on 26 Apr 2021
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?