Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
128 views
Hello everyone. 
I've been doing .net for years, finally jumping into Telerik for the first time. I'm am wanting to try out the RadScheduler control, but not sure if it will work for me, or more so, I don't know how to make it work for me. 

Heres what I need to do:
I need a popup calendar reminder. I don't need the fancy calendar so much, but if a user saves a reminder for a day, I need something to pop up whenever they login to the site and there is a reminder for that day. I would like for this popup to occur no matter what page of the site they are on. 

I also need this to be unique for each site user. Not one calendar of events, but a unique calendar for each site user. 

Can someone please point me in the right direction. Any code examples to get me started would be VERY appreciated!

Thanks in advance!

DB     
Boyan Dimitrov
Telerik team
 answered on 15 Oct 2014
1 answer
113 views
I have a RadGrid that allows for grouping on any column.  My task was to add a hyperlinked column which when clicked posts back
and displays record detail in a RadWindow.  The obvious column-type choice - GridHyperLink, does not cause a postback so I cannot do
my data retrieval and display the record detail server-side.  Using a link button control inside of a GridTemplateColumn breaks my grouping functionality - the RadGrid will no longer group on this column.  I've tried to use a GridBoundColumn and add a link button programmatically, but I haven't gotten this to
work either.  Does anyone have a solution for this?  Thanks in advance!

Doug

Eyup
Telerik team
 answered on 15 Oct 2014
1 answer
102 views
Hi,

We have a ASP.NET RadSlider that starts from a small number and increases to a large number quickly. Is there a way to have 2 different step sizes (a different SmallChange/LargeChange value depending on the range)? For example, a slider that goes from 1 to 5, we would like the step size to be 0.1 between 1 to 2 and a step size of 0.5 between 2 to 5. A javascript solution is also acceptable.

Thanks for your help.

Stephen
Slav
Telerik team
 answered on 15 Oct 2014
8 answers
701 views
I have radgrid  control   i want to click on print image button    to  execute some code  
which event should i used?
Merv
Top achievements
Rank 1
 answered on 15 Oct 2014
1 answer
136 views
I've been able to implement an expand/collapse control for all the groups in my grid based on some of the posts I found in this forum. I'm using the client side api and I have a button that I can put either outside of the grid or as a command item in the header of the grid. This is working just fine, great actually. I am just wondering if there is any way that I can add this control to the header of the GridGroupSplitterColumn? I've attached an image and put a red X in the location I am referring to. I can use some jquery to sort of hack something I just wondered if there is any built in way to access this part of the grid. Thanks for any help.

Eyup
Telerik team
 answered on 15 Oct 2014
16 answers
381 views
Hi,

I am trying to access RadTabstrip control in SharePoint MasterPage to set the Tab through client-side javascript code but getting 'Object doesn't support this property or method' error. Below is what I am trying:

<telerik:RadTabStrip runat="server" id="RadTabStrip1"  Width="433px" SelectedIndex="0" ClickSelectedTab="True" OnClientTabSelected="onClientTabSelected"
    OnClientLoad="onClientTabLoad">



function loadTabIndex(tabstrip) {  
    //If tabstrip reference isn't null
    if (tabstrip != null) {  
            alert('test');
           var tab = tabstrip.findTabByText("Reports"); 
      
           //Get tab object
            if (tab != null) {               
                tab.select(); //Select tab           
            }           
    }    
   
}


accessing loadTabIndex(tabstrip) from onload event

<body class="body" topmargin="0" onload="javascript:_spBodyOnLoadWrapper(); loadTabIndex(ctl00_RadTabStrip1);">

However, I am getting error on tabstrip.findTabByText("Reports")

How can I achieve what I am trying to do? Please help.

Regards,

IW
Marin Bratanov
Telerik team
 answered on 15 Oct 2014
8 answers
390 views
Hello all.

Brand new to Telerik and developing in general so be gentle!

I'm using EF to display product information within a gridview. I have managed to hook up the entity data source and radgrid so that when a user inserts a product ID, the associated information is displayed upon post back.

Everything works fine i.e. sorting, paging, editing, updating.

The only problem I have is with filtering where upon I attempt to filter and receive the subject title...nasty.

If I change AutoGenerateWhere clause to false, I then can't even get the radgrid to bind.

Any chance someone could point me in the right direction. My code is as follows:

 

 

 

<telerik:RadGrid ID="RadGrid1" runat="server" AllowFilteringByColumn="True" 
  
AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" 
  
DataSourceID="edsTelerikWeights" GridLines="None" 
  
AutoGenerateEditColumn="True" AllowAutomaticInserts="True" 
  
AllowAutomaticUpdates="True" ondatabound="RadGrid1_DataBound">
  
<MasterTableView DataKeyNames="PriKey" DataSourceID="edsTelerikWeights">
  
<RowIndicatorColumn>
  
<HeaderStyle Width="20px"></HeaderStyle>
  
</RowIndicatorColumn>
  
<ExpandCollapseColumn>
  
<HeaderStyle Width="20px"></HeaderStyle>
  
</ExpandCollapseColumn>
  
<Columns>
  
<telerik:GridBoundColumn DataField="Productpriority" DataType="System.Int32" 
  
HeaderText="Productpriority" SortExpression="Productpriority" 
  
UniqueName="Productpriority" ReadOnly="true">
  
</telerik:GridBoundColumn>
  
<telerik:GridBoundColumn DataField="MemberId" HeaderText="MemberId" 
  
SortExpression="MemberId" UniqueName="MemberId" ReadOnly="true">
  
</telerik:GridBoundColumn>
  
<telerik:GridBoundColumn DataField="MemberName" HeaderText="MemberName" 
  
SortExpression="MemberName" UniqueName="MemberName" ReadOnly="true">
  
</telerik:GridBoundColumn>
  
<telerik:GridCheckBoxColumn DataField="Retail" DataType="System.Boolean" 
  
HeaderText="Retail" SortExpression="Retail" UniqueName="Retail" ReadOnly="true">
  
</telerik:GridCheckBoxColumn>
  
  
  
<asp:EntityDataSource ID="edsTelerikWeights" runat="server" 
  
ConnectionString="name=PDC_VDSOREntities" 
  
DefaultContainerName="PDC_VDSOREntities" EnableFlattening="False" EntitySetName="tblWeights" 
  
AutoGenerateWhereClause="True">
  
<WhereParameters>
  
<asp:SessionParameter Name="MemberId" 
  
SessionField="VDS_MemberID" />
  
<asp:SessionParameter Name="LocationId" 
  
SessionField="VDS_LocationID" />
  
<asp:ControlParameter ControlID="tbxAutoCompleteMulti" DefaultValue="Null" 
  
Name="UnitId" PropertyName="Text" />
  
</WhereParameters>
  
</asp:EntityDataSource>

Any help gratefully received.

 

 

 



 

Dhamodharan
Top achievements
Rank 1
 answered on 15 Oct 2014
1 answer
187 views
Hi,

I'm looking into other posts and http://demos.telerik.com/aspnet-ajax/grid/examples/performance/virtualization/defaultvb.aspx?#qsf-demo-source page to understand howto achieve facebook like infinite scroll function.

Whis demo works fine but it has its own scrollbar. What I need is "scroll with browser scroll bar", not "scroll with grid's scrollbar".

In this demo (and in other similar posts) virual scrolling works inside grid's height. if you set grid's height to 500px then it works in that dimensions.

But facebook like scrolls  or some other e-commerce sites like

http://demo.amasty.com/ajax-scroll/electronics/computers.html?d2si=84677
http://demo.usestrategery.com/infinite-scroll/electronics/all-products.html#/page/1

increases page's total height when you scroll down.

any suggestions ?
Konstantin Dikov
Telerik team
 answered on 15 Oct 2014
1 answer
53 views
Do you have code to change skins like you did in this screen shot?
Aneliya Petkova
Telerik team
 answered on 15 Oct 2014
5 answers
179 views
Hi,

I have three radpanes inside the radsplitter each seperating with splitbar.

<telerik:RadSplitter ID="RadSplitter1" runat="server" Height="200" Width="700" >
          <telerik:RadPane ID="RadPane1" runat="server" Width="100">
               Left Pane
          </telerik:RadPane>
          <telerik:RadSplitBar ID="RadSplitbar1" runat="server" CollapseMode="Forward">
          </telerik:RadSplitBar>
          <telerik:RadPane ID="RadPane2" runat="server" Width="200">
               Middle Pane
          </telerik:RadPane>
          <telerik:RadSplitBar ID="RadSplitbar2" runat="server" >
          </telerik:RadSplitBar>
          <telerik:RadPane ID="RadPane3" runat="server">
               End Pane
          </telerik:RadPane>
     </telerik:RadSplitter>

When i click on the arrow between left and middle pane,the left pane is collapsed and the size of the other panes are increased.
My requirement is not to increase the sizes of the other panes while collapsing left pane.

Also,is there any way to change the image(arrow image) between left and middle pane  to some other image

I expect an answer ASAP.
Thanks!!
Vessy
Telerik team
 answered on 15 Oct 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?