Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
49 views
Hi guys, when you click month the scheduler component shows the subject that you fill in each date, I wanna know if it's possible to set another field of my database to show when I click in month, for example I don't wanna see the subject I wanna something like names or other field.
Vanilson
Top achievements
Rank 1
 answered on 22 Sep 2013
2 answers
76 views
Hi,
Recently we upgraded the Telerik Control to support the IE 10 but we are facing multiple issue related to UI, one of the issue is when I am hiding the refresh button ,it leaving the space there(verified on Firebug), please see the attached screenshot.
Afroz khan
Top achievements
Rank 1
 answered on 21 Sep 2013
1 answer
106 views
Hi

I think its a bug. When I define a cssclass in my aspx and apply it to the radtile of my Radtilelist, the style is not getting reflected. We are working on Q2 2013 version.

Please confirm this
JC
Shinu
Top achievements
Rank 2
 answered on 21 Sep 2013
1 answer
164 views
I added a RadCombobox to my page and wrote code to disable closing of the dropdown based on some condition. The issue is that the drop down is getting closed immediately after selecting an item. The 'Checkboxes' are enabled and after checking two items only the drop down should close. I have added args.set_cancel(true) in the OnClientDropDownClosing event which seems not working. Later I removed all the business logic inside that event and wrote args.set_cancel(true) and the same result is happening. So I guess the issue is not related to the logic I implemented.

Any input?
Joseph
Shinu
Top achievements
Rank 2
 answered on 21 Sep 2013
1 answer
75 views
Hi

I am using a radcalendar and on clicking fast navigation button, the calendar navigate two months forward or backward. Is it possible to change the calendar view by one year.
Shinu
Top achievements
Rank 2
 answered on 21 Sep 2013
4 answers
259 views

Problem
I cannot figure out how to prevent the "Error loading RadChart image." from appearing on the production version of my site.  I am trying to add the chart to a page within a sub-directory of a folder that uses forms authentication to deny anonymous users.

Right now, I've given the IIS and NETWORK SERVICE users Full control in the permission dialogue.  I've removed any authentication.  I've - of course - added the httpHandler.  I've even tried added the location code desciribed in one of the links below.

What I've Tried
  • UseSession="false" TempImagesFolder="Temp"  ...this enabled images to be created, but they would not show up on the actual site --> same error message
  • UseSession="true" ...error
  • <no special settings>  ...error

System Info
Windows Server 2008 (not a server farm)
.NET 3.5
Telerik.Web.UI.dll v2008.02.0723.35
Telerik.Charting.dll v2.0.3.0

Threads whose suggestions I've tried
http://www.telerik.com/community/forums/thread/b311D-bahbmd.aspx
http://www.telerik.com/community/forums/thread/b311D-bdmmbm.aspx
http://www.telerik.com/community/forums/thread/b311D-bkataa.aspx http://www.telerik.com/community/forums/thread/b311D-bkkgmb.aspx
http://www.telerik.com/community/forums/thread/b311D-batmhc.aspx





Toyin
Top achievements
Rank 1
 answered on 21 Sep 2013
1 answer
131 views
I am struggling to create a toolbar button dynamically. Can someone please help me with this? I would like to create a main toolbar with a set of buttons created inside it. 
Shinu
Top achievements
Rank 2
 answered on 21 Sep 2013
5 answers
261 views
Hi

Can anyone help with a simple code to implement radcaptcha with invisible textbox? I saw the demo code but I got a bit confused there. I cant figure out the thing they are doing there.

Thanks
Saravanan
Shinu
Top achievements
Rank 2
 answered on 21 Sep 2013
6 answers
284 views
Hi i use radgirid
with row select property in clientsettings as showen below

<ClientSettings EnableRowHoverStyle="true"> <Selecting EnableDragToSelectRows="false" AllowRowSelect="true"></Selecting>

 

 

</ClientSettings>
and i have a  gridselectcoloumn in grid
<telerik:GridClientSelectColumn UniqueName="Selection">  <HeaderStyle Width="22px"></HeaderStyle>  <ItemStyle HorizontalAlign="Center" Width="22px"></ItemStyle> </telerik:GridClientSelectColumn>

my problem  starts here ;
radgrid supports multirowselect if only Ctrl key pressed
if ctrl key is not pressed earlier selected row goes to unselected.
i want to select rows by click on it with the earlier selected row keeped.
(is there a configuration parameter for that on radgrid?)
how to accomplish this task?
tahnks

 

 

 

 

 

 

 

 

 

 

 

Pavlina
Telerik team
 answered on 20 Sep 2013
3 answers
616 views
I've got a RadGrid that's filled dynamically with content... the single grid on the page is used for a variety of queries, so it never knows what columns are going to fill it beforehand.

I've enabled Grouping, and it works... I can drag a column to the header, and the data groups just fine.

However, when I click on the grouped column to try to return it back to the grid (so I can group by a different criteria), I get the following error:

Server Error in '/' Application.

Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace: 

[ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index]
   System.Collections.CollectionBase.System.Collections.IList.get_Item(Int32 index) +10587351
   Telerik.Web.UI.GridGroupByExpressionCollection.get_Item(Int32 index) +56
   Telerik.Web.UI.GridGroupPanel.Ungroup(String index) +363
   Telerik.Web.UI.RadGrid.RaisePostBackEvent(String eventArgument) +985
   System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13
   System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +9642338
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1724


Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.18045




Here is the code for the RadGrid I'm using:

 <telerik:RadGrid ID="lst" runat="server"  AllowPaging="True" PageSize="5"
    OnItemCommand="lst_ItemCommand"  CellSpacing="0" GridLines="None" ShowGroupPanel="True" AutoGenerateHierarchy="True"  >
       <ClientSettings AllowColumnsReorder="True" EnablePostBackOnRowClick ="true" AllowDragToGroup="True" >
          <Animation AllowColumnReorderAnimation="True" AllowColumnRevertAnimation="True" />
        </ClientSettings>
        <MasterTableView CommandItemDisplay="Top"  PageSize="100" GroupLoadMode="Client" AutoGenerateColumns="True" AllowSorting="True" EnableLinqGrouping="False" ShowGroupFooter="True" DataKeyNames="ID"  >
        <CommandItemSettings ShowExportToExcelButton="true" ShowAddNewRecordButton="False" ShowExportToCsvButton="True"     ShowExportToPdfButton="True" ShowRefreshButton="False"></CommandItemSettings>

<RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column"></RowIndicatorColumn>

<ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column"></ExpandCollapseColumn>
                   
<EditFormSettings>
<EditColumn FilterControlAltText="Filter EditCommandColumn column"></EditColumn>
</EditFormSettings>

<BatchEditingSettings EditType="Cell"></BatchEditingSettings>

<PagerStyle PageSizeControlType="RadComboBox"></PagerStyle>
        </MasterTableView>
        <GroupingSettings ShowUnGroupButton="True"   />
        <SortingSettings SortedBackColor="Yellow" />
        <ExportSettings SuppressColumnDataFormatStrings="false">
<Pdf>
<PageHeader>
<LeftCell Text=""></LeftCell>

<MiddleCell Text=""></MiddleCell>

<RightCell Text=""></RightCell>
</PageHeader>

<PageFooter>
<LeftCell Text=""></LeftCell>

<MiddleCell Text=""></MiddleCell>

<RightCell Text=""></RightCell>
</PageFooter>
</Pdf>

            <Excel Format="Biff"></Excel>
        </ExportSettings>

<PagerStyle PageSizeControlType="RadComboBox"></PagerStyle>

<FilterMenu EnableImageSprites="False"></FilterMenu>
    </telerik:RadGrid>
 


Is there a setting I'm missing somewhere?  



Many thanks in advance.


Jay
Konstantin Dikov
Telerik team
 answered on 20 Sep 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?