Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
227 views
This is an infuriating intermittent problem but in some cases the RadDatePicker does not display the Calender when clicking on the button used to pop it up.  This happens on IE11.  We have recently upgraded browsers from IE8 to IE11 and are using version 2011.3.1305.35 of the ASP.Net controls.  This does not affect all users.  Chrome exhibits the same behavior.
Pavlina
Telerik team
 answered on 10 Jul 2015
1 answer
180 views

Can the Radpivotgrid make use of the pivot commands in SQL to have the SQL system handle the summary processing?  

For example the SQL script below seemed to not format correctly in the pivotgrid

 

create table Report
 (
 deck char(3),
 Jib_in float,
 rev float,
 rev_insight float,
 jib_out float,
 creation float
 )

 insert into Report  values
 ('A_1',0.345,0,0,1.23,20140212),
 ('B_2',0.456,0,4,2.34,20140215),
 ('C_3',0.554,0,6,0.45,20140217),
 ('D_4',0.231,0,8,7.98,20140222),
 ('E_5',0.453,0,0,5.67,20140219),
 ('F_6',0.344,0,3,7.23,20140223)



SELECT HEADER, [A_1],[B_2],[C_3],[D_4],[E_5],[F_6]        
FROM    
(SELECT DECK,HEADER, VALUE FROM REPORT   
UNPIVOT      

VALUE FOR HEADER IN ([JIB_IN],[REV_INSIGHT],[JIB_OUT],[CREATION])  
) UNPIV
) SRC     
PIVOT    
(
SUM(VALUE) 
FOR DECK IN ([A_1],[B_2],[C_3],[D_4],[E_5],[F_6]) 
) PIV

Angel Petrov
Telerik team
 answered on 10 Jul 2015
3 answers
668 views

Hi,

I am trying to make some changes to the default appearance of RadAsyncUpload control. However I am unable to change the appearance. Basically I want to hide the Green dot icon which shows if file uploaded successfully or not and the Change the Red cross icon which shows along with the Remove option.(Please check the attached image for more details). I have tried with the below css style and unfortunately it didn't work. Could you please help me.

<style>
            div.RadUpload .ruRemove
            {
                background-image: url('/Images/DeleteImage.png') !important;
                background-position: -2px 0px;
                width: 50px;
                height: 14px;
            }
        </style>

 

Magdalena
Telerik team
 answered on 10 Jul 2015
3 answers
132 views

Hi, 

I want to show screenshot of Doc/Pdf files instead of the default icon on the file Explorer in Thumbnails View.

The screen shot is located on my machine and I have multiple files. So for every file, screenshot will be different.

Is there a way I can replace the default icon ?

Thanks

Vessy
Telerik team
 answered on 10 Jul 2015
1 answer
99 views

Hi All, 

 I'm having issues with the this Col. 

I can't get the selectvalue to fire up.

Please can you assist.

<telerik:GridDropDownColumn DataField="AstSeriesID" ListTextField ="Name" ListValueField="Id" DataSourceID="AssetSeries" HeaderText  ="Asset Series"
                           UniqueName="AssetSeries" DropDownControlType ="RadComboBox" EnableEmptyListItem="True" EmptyListItemValue=" " EmptyListItemText="<Add New Seies>">
                        </telerik:GridDropDownColumn>

 

Kind Regards, 

Liz

Eyup
Telerik team
 answered on 10 Jul 2015
1 answer
224 views
I am building an online application that simply takes information and stores it in a database.  This application is rather large and it has multiple sections not unlike many modern online tax applications.  Anyone have any ideas of what I can do to track their progress and show a graphical representation of where they are at in the process?  Is there a way to augment the tree control or a menu system in some way to achieve this?  I am fresh out of ideas and would love some input.
Nencho
Telerik team
 answered on 10 Jul 2015
5 answers
1.7K+ views
Hi,

Can you tell me if there is a way to limit the amount of text shown in rad grid? For example; a particular data field has a string of text about 200 characters in length, but on the actual data grid I only want to show the first 50 characters in the data column. How would I do that?
Looking forward to assistance.

Thanks,
Ron.
Slav
Telerik team
 answered on 10 Jul 2015
4 answers
157 views

Hi

My auto complete box gets populated with tokens programmatically by other actions on my page, I would like the user to be able to delete these tokens but not to be able to type in free text - is this possible?

 

Al
Top achievements
Rank 1
Iron
Iron
Iron
 answered on 10 Jul 2015
1 answer
282 views

Good Morning,
I use a RadPanelBar to hide or show the filter of a grid .

I use the same code in two webform identically (in both pages the PanelBar and the grid are within
a RadPageView,It could be an important detail) .

Image Bug 001 : Initial scenario panel bar filters initial uncompressed (Page correct)
Image Bug 002 : panel expanded bar after pressing the button "+" (Page correct)

In the second page, the filter part already expanded but it is not visible the entire structure of
panel bar but only its content . ( Image Bug 003 )
If I click on any part near the filter panel scomapre ( Image Bug 004 ) .

Does anyone know help me ?
I tried to replace the element ContentTemplate RadPanelItem with an ItemTemplate
but reading the documentation is it correct  use a ContentTemplate (in fact
the first page works ).

 

This is the code of first page (OK)

      <telerik:RadPageView ID="rpwCompany" runat="server">
          <div class="divFilters">
              <telerik:RadPanelBar runat="server" ID="pnlBarFilterCompany" Width="100%" ExpandMode="MultipleExpandedItems" Font-Bold="true">
                  <Items>
                      <telerik:RadPanelItem Expanded="false">
                          <ContentTemplate>
                              <div class="filterBox">
                                  <div class="filterItemContainer">
                                      <div class="filterItem">
                                          <asp:Label ID="lblTagFilterCompanyCode" runat="server" SkinID="TagFilter" CssClass="filterLabel" />
                                          <telerik:RadTextBox ID="txtFilterCompanyCode" runat="server" MaxLength="16" Width="100px" />
                                      </div>
 
                                      <div class="filterItem">
                                          <asp:Label ID="lblTagFilterCompanyName" runat="server" SkinID="TagFilter" CssClass="filterLabel" />
                                          <telerik:RadTextBox ID="txtFilterCompanyName" runat="server" MaxLength="16" Width="180px" />
                                      </div>
                                  </div>
                                  <div class="filterButton">
                                      <telerik:RadButton ID="btnSearchCompany" runat="server" Width="140px" Height="65px" Font-Bold="true"
                                          Font-Size="16px" ForeColor="#0167B1" OnClick="btnSearchCompany_Click">
                                          <Icon PrimaryIconUrl="~/Images/24x24/search.png" PrimaryIconHeight="24px" PrimaryIconWidth="24px" />
                                      </telerik:RadButton>
                                      <telerik:RadButton ID="btnResetFilterCompany" runat="server" Width="140px" Height="35px" Font-Bold="true"
                                          Font-Size="16px" ForeColor="Red" OnClick="btnResetFilterCompany_Click" Skin="Sunset">
                                      </telerik:RadButton>
                                  </div>
                              </div>
                          </ContentTemplate>
                      </telerik:RadPanelItem>
                  </Items>
              </telerik:RadPanelBar>
          </div>
          <telerik:RadGrid ID="gvListCompany" runat="server" AllowPaging="True" ...............

 This is the code of second page (Error)

<telerik:RadPageView ID="rpwValidity" runat="server">           
            <div class="divFilters">
                <telerik:RadPanelBar runat="server" ID="pnlBarFilterValidity" Width="100%" ExpandMode="MultipleExpandedItems" Font-Bold="true">
                    <Items>
                        <telerik:RadPanelItem Expanded="false">
                            <HeaderTemplate></HeaderTemplate>
                            <ContentTemplate>
                                <div class="filterBox">
                                    <div class="filterItemContainer">
                                        <div class="filterItem">
                                            <asp:Label ID="lblTagFilterValidityCode" runat="server" SkinID="TagFilter" CssClass="filterLabel" />
                                            <telerik:RadTextBox ID="txtValidityCodeFilter" runat="server" MaxLength="16" Width="100px" />
                                        </div>
 
                                        <div class="filterItem">
                                            <asp:Label ID="lblTagFilterValidityName" runat="server" SkinID="TagFilter" CssClass="filterLabel" />
                                            <telerik:RadTextBox ID="txtValidityNameFilter" runat="server" MaxLength="16" Width="180px" />
                                        </div>
 
                                        <div class="filterItem">
                                            <asp:Label ID="lblTagFilterOPTExpression" runat="server" SkinID="TagFilter" CssClass="filterLabel" />
                                            <telerik:RadTextBox ID="txtOPTExpressionFilter" runat="server" MaxLength="16" Width="180px" />
                                        </div>
 
                                        <div class="filterItem">
                                            <asp:Label ID="lblTagFilterStartProductionDateFrom" runat="server" SkinID="TagFilter" CssClass="filterLabel" />
                                            <telerik:RadDatePicker ID="rdpStartProductionDateFromFilter" runat="server" Width="180px" AutoPostBack="true" OnSelectedDateChanged="rdpStartProductionDateFromFilter_SelectedDateChanged" />
                                        </div>
 
                                        <div class="filterItem">
                                            <asp:Label ID="lblTagFilterStartProductionDateTo" runat="server" SkinID="TagFilter" CssClass="filterLabel" />
                                            <telerik:RadDatePicker ID="rdpStartProductionDateToFilter" runat="server" Width="180px" AutoPostBack="true" OnSelectedDateChanged="rdpStartProductionDateToFilter_SelectedDateChanged" />
                                        </div>
 
                                        <div class="filterItem">
                                            <asp:Label ID="lblTagFilterLanguage" runat="server" SkinID="TagFilter" CssClass="filterLabel" />
                                            <telerik:RadComboBox ID="ddlLanguageFilter" runat="server" Width="120px" />
                                        </div>
 
                                    </div>
                                    <div class="filterButton">
                                        <telerik:RadButton ID="btnSearchValidity" runat="server" Width="140px" Height="65px" Font-Bold="true"
                                            Font-Size="16px" ForeColor="#0167B1" OnClick="btnSearchValidity_Click">
                                            <Icon PrimaryIconUrl="~/Images/24x24/search.png" PrimaryIconHeight="24px" PrimaryIconWidth="24px" />
                                        </telerik:RadButton>
                                        <telerik:RadButton ID="btnResetFilterValidity" runat="server" Width="140px" Height="35px" Font-Bold="true"
                                            Font-Size="16px" ForeColor="Red" OnClick="btnResetFilterValidity_Click" Skin="Sunset">
                                        </telerik:RadButton>
                                    </div>
                                </div>
                            </ContentTemplate>
                        </telerik:RadPanelItem>
                    </Items>
                </telerik:RadPanelBar>
            </div>
            <telerik:RadGrid ID="gvListValidity" runat="server" AllowPaging="True" ......


Nencho
Telerik team
 answered on 10 Jul 2015
3 answers
226 views

I have many dropdowns in my webform application and they all behave correctly except on one page. On the page in question the dropdown behaves differently

  • If I click on the arrow the dropdown list appears
    • as I move the mouse it will highlight an item only when the mouse is hovering over the actual text in the list
  • If instead of the arrow I click on the control to get a dropdown the dropdown will only appear if I click an area where text exists.  
  • When trying to make a selection this will only happen if I click the area of the highlighted row where text exists.
  • If I just click a highlighted row with the mouse pointer over a clear bit of highligting it will not select.

Any ideas why this may be happening?

Aneliya Petkova
Telerik team
 answered on 10 Jul 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?