Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
276 views

Can I have 3D view for RadHtml column chart. I am using telerik version 2014.1.225.40. Please help.

 

Thanks,

Rosalini

Rumen
Telerik team
 answered on 07 Dec 2017
8 answers
174 views

Hello, I am using 2015.3.930.40.

I added two ImageGalleryTemplateItem and now the RadImageGallery posts back on each forward and back. Can I prevent postback? If I do need to postback, how can I keep the animation between items? Thank you.

Marin Bratanov
Telerik team
 answered on 07 Dec 2017
0 answers
82 views
Is there a way to access the filenames in the file list of AsyncUpload from script (jquery/javascript). If so, please provide sample.
Darius
Top achievements
Rank 1
 asked on 06 Dec 2017
1 answer
40 views

Is it possible to discover e.Item depth in itemdatabound?

 

Marc

Peter Milchev
Telerik team
 answered on 06 Dec 2017
1 answer
100 views
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" BackgroundPosition="Center" 
       EnableSkinTransparency="True" BackColor="Transparent" BackgroundTransparency="100" >
       <div style="vertical-align:middle; text-align:center">
      <telerik:RadBinaryImage ID="RadBinaryImage1" ResizeMode="None" ImageUrl="../../Images/CustomLoader2.svg" runat="server" />
   
     </div>
    </telerik:RadAjaxLoadingPanel>

 

It works to show the SVG image while a chart/grid is loading, however, the background isn't transparent and the SVG image isn't centered, x/y axis with the object it's loading over top of.  

 

Can you amazing Telerik Gurus please help!  Thanks so much!  Hope you have a  great weekend!

Logan Marshall
Top achievements
Rank 2
Iron
 answered on 05 Dec 2017
0 answers
45 views

Hello,

We have a SharePoint 2010 environment.  We put the  Telerik CAPTCHA to a web part but are experiencing issues with WFE server(s) hanging at random times when the “Next Image” was used.  It would always come up the first time and could be successfully used but then randomly it would not work when ‘new image’ was requested from the link and it will just hang.

We would get the following error:  Uncaught Sys.WebForms.PageRequestManagerTimeoutException: The server request timed out.

It works when there is only one WFE is involved.  We have multiple WFEs and it would fail randomly.  

Any idea/thoughts about the issue?

Thanks,

Ricky

Ricky
Top achievements
Rank 1
 asked on 05 Dec 2017
1 answer
143 views
Hi, there is a way to customize the media player so that:
1. Do not show the posters, I have no pictures to show and I do not want to show a <img src = "">
2. The playlist is default opened, if i set width to 100% when i try to open the playlist item i'm not able to see it on the page. I want to fix width for player and for playlist box;
3. Do not show the playlist opening / closing buttons;
4. Can i add some additionals info to "MediaPlayerVideoFile" or "MediaPlayerAudioFile" and then (on user first play of a file) call a client-side code that increments statistics for play via asmx ?
Rumen
Telerik team
 answered on 05 Dec 2017
4 answers
301 views
Using Using RadControls 2008.3.1314, Internet Explorer 6, ASP.NET 2.0.50727.

I am experiencing an oddity with the Grid Header Context Menu in both my application and on the live demo page. The Grid loads and all columns are visible, but when I right click to access the header context menu, all the columns in the "Columns" context sub-menu have an unchecked state, as if there were not visible. However, as soon as I access the header context menu a second time, the checked states correctly match the actual visibility of the Grid's columns. Then, if I force the Grid to rerender (sort, group, ungroup, etc.), the context menu shows all unchecked again even though the columns are actually visible.

Setting Display="true" for any given GridBoundColumn has no effect on this behavior. Does anyone else experience this behavior on the demo page?

Here's how I'm defining my RadGrid:
<telerik:RadGrid ID="RadGrid2" runat="server" DataSourceID="sdsFreTats" GridLines="None" 
    ShowGroupPanel="True" Skin="Office2007" AllowSorting="True" AutoGenerateColumns="False" 
    AllowPaging="True" PageSize="40" ShowFooter="True">  
    <ClientSettings AllowDragToGroup="True" AllowColumnsReorder="True" ReorderColumnsOnClient="True" 
        AllowColumnHide="true">  
        <Resizing AllowColumnResize="true" /> 
        <Selecting AllowRowSelect="True" /> 
        <Scrolling AllowScroll="True" UseStaticHeaders="True" /> 
    </ClientSettings> 
    <MasterTableView DataSourceID="sdsFreTats" GroupLoadMode="Client" TableLayout="Fixed" EnableHeaderContextMenu="true">  
        <Columns> 
         ...  
        </Columns> 
        <PagerStyle Mode="NextPrevAndNumeric" /> 
    </MasterTableView> 
    <HeaderContextMenu Skin="Office2007">  
        <CollapseAnimation Duration="200" Type="OutQuint" /> 
    </HeaderContextMenu> 
    <FilterMenu Skin="Office2007">  
        <CollapseAnimation Duration="200" Type="OutQuint" /> 
    </FilterMenu> 
    <PagerStyle Mode="NextPrevAndNumeric" /> 
</telerik:RadGrid> 
 
G
Top achievements
Rank 1
 answered on 05 Dec 2017
1 answer
190 views
Hello,
I would like to create a grid with two rows in the footer. It's possible.

Automatically translated
Rumen
Telerik team
 answered on 05 Dec 2017
1 answer
167 views

I am trying to update a single GridDropDown column in a RadGrid

the Edit Button is an Image Button, with different images depending on the value in the data selected in the dropdown

the Cancel button appears but not the Update - should I explicitly put something in the update button?  both buttons appear if I change it to Popup but that has its own problems

the XML for the data source for the dropdown

<?xml version="1.0" encoding="utf-8" ?>
<root>
    <CareerStage Text="None" Value="0" />
    <CareerStage Text="Developmental" Value="1" />
    <CareerStage Text="Improving" Value="2" />
    <CareerStage Text="At peak" Value="3" />
    <CareerStage Text="Declining" Value="4" />
    <CareerStage Text="Replace" Value="5" />
</root>

(there's some drag and drop which is working)

    protected void rgRoster_UpdateCommand(object source, GridCommandEventArgs e)
    {
        GridEditFormItem theItemEdited;
        TableCell tCell;
        RadComboBox rcbCareerStage;
        bool GoodCall;
        int PlayerID, VirtualTeamID, CareerStage;
.....
}

the Grid

   <telerik:RadGrid ID="rgRoster" AutoGenerateColumns="False" OnNeedDataSource="rgRoster_NeedDataSource"
       OnItemCreated="rgRoster_ItemCreated" OnItemDataBound="rgRoster_ItemDataBound" OnEditCommand="rgRoster_EditCommand" OnUpdateCommand="rgRoster_UpdateCommand" Width="100%" runat="server" OnRowDrop="rgRoster_RowDrop" >
       <GroupingSettings CollapseAllTooltip="Collapse all groups" />
       <MasterTableView DataKeyNames="id" EditMode="InPlace" >
           <EditFormSettings>
               <EditColumn UniqueName="CareerStageImage" ButtonType="ImageButton" >
               </EditColumn>
               <PopUpSettings />
           </EditFormSettings>
           <GroupByExpressions>
               <telerik:GridGroupByExpression>
                   <SelectFields>
                       <telerik:GridGroupByField FieldName="positionCategoryCode" />
                       <telerik:GridGroupByField FieldName="positionCategory" />
                   </SelectFields>
                   <GroupByFields>
                       <telerik:GridGroupByField FieldName="positionCategoryCode" SortOrder="Ascending" />
                   </GroupByFields>
               </telerik:GridGroupByExpression>
               <telerik:GridGroupByExpression>
                   <SelectFields>
                       <telerik:GridGroupByField FieldName="positionSubCategoryCode" />
                       <telerik:GridGroupByField FieldName="positionSubCategory" />
                   </SelectFields>
                   <GroupByFields>
                       <telerik:GridGroupByField FieldName="positionSubCategoryCode" />
                   </GroupByFields>
               </telerik:GridGroupByExpression>
           </GroupByExpressions>
           <RowIndicatorColumn Visible="False">
           </RowIndicatorColumn>
           <ExpandCollapseColumn Created="True">
           </ExpandCollapseColumn>
           <Columns>
               <telerik:GridBoundColumn UniqueName="id" DataField="id" Visible="false" ReadOnly="true" />
               <telerik:GridTemplateColumn UniqueName="hiddenCareerStage" Visible="false" ReadOnly="true" >
                   <ItemTemplate>
                       <asp:HiddenField ID="hdnCareerStage" Value='<%#DataBinder.Eval(Container.DataItem, "careerStage")%>' runat="server" />
                   </ItemTemplate>
               </telerik:GridTemplateColumn>
               <telerik:GridNumericColumn UniqueName="Depth" DataField="positionDepth" DecimalDigits="0" HeaderStyle-Width="20px" HeaderText="DPTH" ReadOnly="true">
               </telerik:GridNumericColumn>
               <telerik:GridTemplateColumn UniqueName="role" HeaderText="ROLE" ReadOnly="true">
                   <HeaderStyle Width="42px" />
                   <ItemTemplate>
                       <telerik:RadLabel ID="rlbRole" Text='<%#DataBinder.Eval(Container.DataItem, "role")%>' runat="server" />
                   </ItemTemplate>
               </telerik:GridTemplateColumn>
               <telerik:GridBoundColumn DataField="nfl" HeaderStyle-Width="36px" HeaderText="NFL" ReadOnly="true">
               </telerik:GridBoundColumn>
               <telerik:GridTemplateColumn>
                   <HeaderStyle Width="96px" />
                   <ItemTemplate>
                       <asp:HyperLink ID="hlName" Text='<%#DataBinder.Eval(Container.DataItem, "name")%>' runat="server" />   
                   </ItemTemplate>
               </telerik:GridTemplateColumn>
               <telerik:GridBoundColumn DataField="age" HeaderStyle-Width="36px" HeaderText="AGE" ReadOnly="true">
               </telerik:GridBoundColumn>
               <telerik:GridBoundColumn DataField="exp" HeaderStyle-Width="36px" HeaderText="EXP" ReadOnly="true">           
               </telerik:GridBoundColumn>
               <telerik:GridBoundColumn DataField="college" HeaderStyle-Width="96px" HeaderText="COLLEGE" ReadOnly="true">
               </telerik:GridBoundColumn>
               <telerik:GridBoundColumn DataField="acquired" HeaderStyle-Width="72px" HeaderText="HOW ACQUIRED" ReadOnly="true">
               </telerik:GridBoundColumn>
               <telerik:GridBoundColumn DataField="rpi" HeaderStyle-Width="32px" HeaderText="RPI" ReadOnly="true">
               </telerik:GridBoundColumn>
               <telerik:GridNumericColumn DataField="capcost" DataFormatString="{0:C}" DataType="System.Decimal" HeaderStyle-Width="32px" HeaderText="CAP COST" ReadOnly="true">
               </telerik:GridNumericColumn>
               <telerik:GridDropDownColumn UniqueName="CareerStage" DropDownControlType="RadComboBox" HeaderStyle-Width="42px" HeaderText="CAREER STAGE"
                   DataField="careerStage" DataSourceID="xdsCareerStage" ListTextField="Text" ListValueField="Value" AutoPostBackOnFilter="true" />
               <telerik:GridEditCommandColumn UniqueName="CareerStageImage" ButtonType="ImageButton" EditImageUrl="../Images/CareerStage/Career_0None.png" HeaderText="Click to Update" HeaderStyle-Width="96px" />
               <telerik:GridBoundColumn DataField="notes" HeaderStyle-Width="160px" HeaderText="NOTES" ReadOnly="true" >
               </telerik:GridBoundColumn>
           </Columns>
       </MasterTableView>
       <ClientSettings AllowRowsDragDrop="true">
           <Selecting AllowRowSelect="true" EnableDragToSelectRows="false" />
           <ClientEvents OnRowDropped="RowDropped" />
       </ClientSettings>
</telerik:RadGrid>
Eyup
Telerik team
 answered on 05 Dec 2017
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?