Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
58 views
Hi,

Is it possible to do custom data calculations if PivotGrid datasource is from OLAP?
Maria Ilieva
Telerik team
 answered on 04 Dec 2014
1 answer
117 views
We are using radeditor(Telerik RadControls for ASP.NET Ajax) with version 2013.2.717.35. In IE11 on font change or font size change, the cursor always moves to first line. It also add lots of "&lt:>" when we try to save data. The only solution I found on internet is to use meta tag as follows:
  <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE10" />

But since we are using Iframes in our website, this tag does not get applied. It only gets applied when set on whole web site level which is not an appropirate fix.
Can you please suggest us any other solution for this?
Ianko
Telerik team
 answered on 04 Dec 2014
4 answers
172 views
Hi,

Just discovered that the TreeView actually has LightWeight mode enabled...
But, the Expand/Collapse image is always the old Windows XP look (+/-) instead of the more modern triangle symbol.
For example when using the Metro skin, in Classic mode the Expand/Collapse has the modern symbol but in LightWeight mode it displays the old +- symbol.

Regards
Andreas
Andreas
Top achievements
Rank 1
 answered on 04 Dec 2014
1 answer
93 views
Is there any way to have a series of x-y points that are connected with a line with an arrow pointing the direction for the order they were added or shown in the list of series points? The default is just to have a line connecting all the points but I would like to know the sequence and direction of the points. For example,
point 1 in series has a line that has an arrow pointing to point 2
point 2 in series has a line that has an arrow pointing to point 3
 and so on
 
Thanks.
Danail Vasilev
Telerik team
 answered on 04 Dec 2014
1 answer
98 views
I used the Visual Style Builder to create a custom skin using the MetroTouch and I only use the Window control. Now none of the command buttons on the toolbar doesn't show up. How can I fix this?

Thanks
Bozhidar
Telerik team
 answered on 04 Dec 2014
14 answers
290 views
Hello there!

I'm facing a very strange behaviour.

I'm using RadListView to display products on our Sitefinity-Website. The RadListView its bound to his data with NeedDataSource. The DataSource itself returns the products in right oder (sorted by name). While displaying the products in RadListView all in one time, it's working fine, but when I set AllowPaging=true, the items are not sorted any more by name. I don't know which field they are sorted by. I don't use any buttons oder code-behind to set a different sort expression and I'm sure that this behaviour is new, since one of the last updates of Sitefinity.

Version 3.7 SP4 for .NET 4

Has anyone an idea or has been facing a similar problem?

Thanks in advance!

Dieter
Angel Petrov
Telerik team
 answered on 04 Dec 2014
9 answers
1.3K+ views
Hi All 

i need a solution for check/uncheck checkbox in a radgrid column

this is my piece of code

            <telerik:RadGrid ID="M" runat="server" Width="99%" AllowPaging="True" EnableViewState="False"
                GridLines="None" meta:resourcekey="MResource1" AllowFilteringByColumn="true"
                OnInit="GridControl_Init" EnableLinqExpressions="false" 
                EnableEmbeddedSkins="false" AutoGenerateColumns="False">
                <HeaderContextMenu EnableEmbeddedSkins="True">
                </HeaderContextMenu>
                <FilterMenu Skin="Nediso" EnableEmbeddedSkins="false">
                </FilterMenu>
                <PagerStyle Mode="NextPrevAndNumeric" Position="TopAndBottom" AlwaysVisible="true" />
                <MasterTableView Width="100%" EnableViewState="False" AllowFilteringByColumn="true">
                
                <RowIndicatorColumn>
                        <HeaderStyle Width="20px" />
                    </RowIndicatorColumn>
                <Columns>  
                     <telerik:GridTemplateColumn  AllowFiltering="false" AutoPostBackOnFilter="false" HeaderStyle-Width="5%" ItemStyle-Width="5%" >
                    <HeaderStyle Width="3%" HorizontalAlign="Justify" />
                    <ItemStyle Width="3%" HorizontalAlign="Justify" />
                    <HeaderTemplate>
                    <input type="checkbox" runat="server" value="check" ID="checkbox"  />
                    </HeaderTemplate>
                    <ItemTemplate>
                    <asp:CheckBox runat="server" AutoPostBack="false" Width="5%" ID="checkbox2" />
                    </ItemTemplate>
                    </telerik:GridTemplateColumn>




                     <telerik:GridBoundColumn DataField="TOKEN" Visible="false" UniqueName="TOKEN" >
                    </telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="FIRST NAME" HeaderText="FIRST NAME" UniqueName="FIRST NAME">
                    </telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="LAST NAME" HeaderText="LAST NAME" UniqueName="LAST NAME">
                    </telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="STATUS" HeaderText="STATUS" UniqueName="STATUS">
                    </telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="DESIGNATION" HeaderText="DESIGNATION" UniqueName="DESIGNATION">
                    </telerik:GridBoundColumn>
                    </Columns>
                    <PagerStyle AlwaysVisible="true" Mode="NextPrevAndNumeric" Position="TopAndBottom" />
                    
                </MasterTableView>
                <ClientSettings AllowColumnsReorder="True" ReorderColumnsOnClient="True" EnableRowHoverStyle="True">
                    <Resizing AllowColumnResize="True" />
                    <Selecting AllowRowSelect="True" />                    
                    <ClientEvents OnFilterMenuShowing="OnFilterMenuShowing"></ClientEvents> 
                    </ClientSettings>
                <FilterMenu EnableTheming="True">
                    <CollapseAnimation Type="None" />
                    <ExpandAnimation Type="None" />
                </FilterMenu>
            </telerik:RadGrid>

please give me a solution for this, i am using ajax update panel for radgrid which is one problem if we use autopostback feature for checkbox column.. i have used many javascript snippets for this but it's not working on client funtionality..

can anyone give me a client side or serverside solution for this event.

Eyup
Telerik team
 answered on 04 Dec 2014
3 answers
1.9K+ views
I have the below code, this so that I can get the Multiline Edit under the Auto Edit Feature. That part is working great data is bound to the edit portion, but in the actual Grid the columns are blank under these fields - the data is not being bound to the Grid, but is showing up when I open the Edit Popup Panel. Why is the data not showing in the initial grid:

Code:


<telerik:GridTemplateColumn DataField="CorrectiveAction" 
FilterControlAltText="Filter CorrectiveAction column" HeaderText="Corrective 
Action" SortExpression="CorrectiveAction" UniqueName="CorrectiveAction" 
Visible="false"><BR><EditItemTemplate><BR><asp:TextBox ID="TextBox2" 
Text='<%# Bind("CorrectiveAction")%>' Columns="30" Rows="5" 
TextMode="MultiLine" 
runat="server"></asp:TextBox><BR></EditItemTemplate><BR></telerik:GridTemplateColumn>
Eyup
Telerik team
 answered on 04 Dec 2014
1 answer
143 views
Is it possible to completely hide all dependencies from the gantt chart?

ie. remove the option to even select them?
Bozhidar
Telerik team
 answered on 04 Dec 2014
2 answers
113 views
Hi,
I have a radWindowManager with two windows, if I set the OpenerElementID as a button on my form then all is ok but if I do exactly the same thing from a separate button in click as below then the window opens but it is not the window defined by 'rwDialog', it is a new empty window:

function btnClick() {
      var oManager = GetRadWindowManager();
      oManager.open(null, "rwDialog");
}


This is in a master page, not sure if that makes any difference.
Al
Top achievements
Rank 1
Iron
Iron
Iron
 answered on 04 Dec 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?