Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
92 views
Hello,

I am working with the ExchangeSchedulerProvider. I set the provider for the scheduler programatically as per the instructions. When I run I get the error: 'DataKeyField, DataSubjectField, DataStartField and DataEndField are required for databinding'

In the working example code I have downloaded from Telerik, I do not see you guys setting these values either at design time or runtime. And yet the example code runs fine. Why am I getting the error? Do I in fact need to set these values when using the ExchangeSchedulerProvider?

Thanks,
Jeremy
Peter
Telerik team
 answered on 27 Jan 2012
3 answers
121 views
I have created my own skin.  how can i make the event to show as much as possible if there is room for it. 
My description only shows 2 lines.  i want more detail in case there arenot any other events on the same day. 

also is there a way to hide the scrolling on the right hand side?
Peter
Telerik team
 answered on 27 Jan 2012
2 answers
180 views
hello,
we are using  telerik radscheduler with events in it when ever we hover on event a popup willopen shoeing info about event we used tooltipmanager to do that ,sometimes it is throwing an error
RadTooptipManger Response error:
Exception=Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed
i am not able to know why are we getting this ,we areusing Trailversion of telerik  please respond
Svetlina Anati
Telerik team
 answered on 27 Jan 2012
3 answers
216 views
hi all.
i have i problem with radgrid. when i chose
<ClientSettings>
                <Selecting AllowRowSelect="True" />
</ClientSettings>
i can select row in grid.
but when i chose
<ClientSettings>
                <Selecting AllowRowSelect="True" />
                <ClientEvents OnRowSelecting="Rowselecting" />
</ClientSettings>
i can't chose row in grid . any event i chose in client setting , it made the AllowRowSelect don't work.
please help me , thank you .
Andrey
Telerik team
 answered on 27 Jan 2012
1 answer
115 views
Hi friends

we are using RadGrid in our application.
But we need to change paging style for RadGrid like,
first 1 2 3 4 5 6 7 last   like this
can anybody help me please...how can i do this

I have attached the preview of paging....



Thanks in Advance
Anwar
Shinu
Top achievements
Rank 2
 answered on 27 Jan 2012
1 answer
125 views
I am trying to add nodes from client using javascript and telerik client library : 

for (var nodeCount = 0; nodeCount < nodeLength; nodeCount++) {
                var node = new Telerik.Web.UI.RadTreeNode();
                node.set_text(MainArrayNodes[nodeStartCount].Text);
                node.set_value(MainArrayNodes[nodeStartCount].Value);
                var imageUrl = MainArrayNodes[nodeStartCount].ImageUrl.replace('~\\', '');
                node.set_imageUrl(imageUrl);
var nodeElem = nodeElem.get_element();
                selectedNode.get_nodes().add(node);
            }

The nodes which i add from server / using load on demand have proper values inside of node.get_element(). But when i try to add the nodes from client side using javascript the get_element() returns null for a node. Am I missing anything ?
mirang
Top achievements
Rank 1
 answered on 27 Jan 2012
3 answers
203 views
Hi,
during migration from old combo I found that:
- here it says that ClientDataString can be used in OnClientItemsRequesting event
http://www.telerik.com/help/radcontrols/prometheus/combo_OnClientItemsRequesting.html
- same time here is says that RadComboBoxItemsRequestedEventArgs.ClientDataString was removed
http://www.telerik.com/help/radcontrols/prometheus/combochanges.html

Looks like the second statement is correct - then can you give an example using ClientDataString or Context ?
And perhaps fix documentation
Thanks
Alex
Kalina
Telerik team
 answered on 27 Jan 2012
3 answers
126 views
Hi,

I've searched the forums but haven't been able to see if this is possible.

I've got a radtooltip this is assigned to a control inside a GridTemplateColumn, which works very well.  However it'd be much better if the tooltip could be applied to the entire row.  Since the row doesn't have an ID I'm not sure this is possible, but would be very pleased if it is!

Thanks,
Mathew
Shinu
Top achievements
Rank 2
 answered on 27 Jan 2012
1 answer
130 views
I have a listview of the contains a image and  check box. I cannot get the OnCheckedChanged event to fire.
The Listview output is attached and the code that creates is below:
<telerik:RadListView ID="RadListView1" runat="server" AllowPaging="True" ItemPlaceholderID="PlaceHolder1"
    Skin="listview_2" EnableEmbeddedSkins="false" OnItemCreated="RadListView1_ItemCreated"
    DataKeyNames="id,filenameextension,typeAbbr,title" OnNeedDataSource="RadListView1_NeedDataSource">
    <LayoutTemplate>
        <div class="RadListView RadListViewFloated RadListView_Windows7">
            <telerik:RadDataPager ID="RadDataPager1" runat="server" PageSize="25" PagedControlID="RadListView1"
                BorderWidth="0" OnFieldCreated="RadDataPager1_FieldCreated" CssClass="dataPagerClass">
                <Fields>
                    <telerik:RadDataPagerButtonField FieldType="FirstPrev" />
                    <telerik:RadDataPagerButtonField FieldType="Numeric" PageButtonCount="5" />
                    <telerik:RadDataPagerButtonField FieldType="NextLast" />
                    <telerik:RadDataPagerPageSizeField PageSizeText="Page size: " />
                    <telerik:RadDataPagerGoToPageField CurrentPageText="Page: " TotalPageText="of" SubmitButtonText="Go"
                        TextBoxWidth="15" />
                    <telerik:RadDataPagerTemplatePageField>
                        <PagerTemplate>
                            <b>Total Number of Assets Found:
                                <asp:Label runat="server" ID="TotalItemsLabel" Text="<%# Container.Owner.TotalRowCount%>" />
                            </b>
                        </PagerTemplate>
                    </telerik:RadDataPagerTemplatePageField>
                </Fields>
            </telerik:RadDataPager>
            <asp:PlaceHolder ID="PlaceHolder1" runat="server" />
        </div>
    </LayoutTemplate>
    <ItemTemplate>
        <div style="float: left; width: 162px; height: 200px; background-color: White;">
            <asp:Panel ID="myThumb" runat="server" CssClass="myClass" Style="border: 0; white-space: normal;
                padding: 5px 2px 25px 2px; background-color: #F0F8FF; text-align: center;
                width: 156px">
                <asp:HyperLink ID="HyperLink1" runat="server" >
                    <telerik:RadBinaryImage ID="RadBinaryImage1" runat="server" AutoAdjustImageControlSize="False"
                        CssClass="myClass" ImageUrl='<%# Eval("thumbUrl") %>' AlternateText="Click to view preview"
                        ToolTip="Click to view preview" Width="150px" Height="150px" />
                </asp:HyperLink><br />
                <asp:CheckBox ID="ChkImage" runat="server" Style="float: left; padding-top: 5px" OnCheckedChanged="ChkImage_CheckedChanged" /><small><asp:HyperLink
                    ID="lnkAsset1" runat="server" Visible="false" Style="float: left; padding-top: 5px">
                </asp:HyperLink><asp:HyperLink ID="lnkAsset2" runat="server" Style="float: left;">
                </asp:HyperLink><asp:HyperLink ID="lnkAsset3" runat="server" Style="float: left;
                    padding-left: 20px"></asp:HyperLink></small><br />
               <asp:HiddenField ID="hiddenAssetId" Value='<%# Eval("id") %>' runat="server" />
            </asp:Panel>
        </div>
    </ItemTemplate>
    <EmptyDataTemplate>
        No Assets Found
    </EmptyDataTemplate>
</telerik:RadListView>

The code to fire on the event is here;
protected void ChkImage_CheckedChanged (object sender, EventArgs e)
{
    CheckBox ChkImage = RadListView1.FindControl ("ChkImage") as CheckBox;
    Boolean chk = ChkImage.Checked;
}
Princy
Top achievements
Rank 2
 answered on 27 Jan 2012
1 answer
150 views
Good Afternoon!

I am using the aspnet RadGrid.
It works great.

I have allowpaging on
i have my aggrigates working great in the footer.

How can i get the aggrigates to total per/page as well as per/grid(the entire dataset)

Thanks, Jon
Richard
Top achievements
Rank 1
 answered on 26 Jan 2012
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?