Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
145 views
Hi


Currently i am using the Telerik Rad Editor Trial Version ( RadEditorMOSS_5_7_3_Trial.) I just wanted to add a functionality in current editor. The functionality is like:Users would be able to expand/collapse a part of the body text, using this functionality.How can i achieve this? is it possible to add this functionality in the current editor. Please advise.
Stanimir
Telerik team
 answered on 30 Aug 2010
1 answer
122 views
Hi

Currently i am using the Telerik Rad Editor Trial Version ( RadEditorMOSS_5_7_3_Trial.)
I just wanted to add a functionality in current editor. The functionality is like:

"Users would be able to select a text from the body HTML and add a context help to it.  This help would appear on mouse over of the selected text."

Please let me know how can i achieve it.

Thanks
Amit
Stanimir
Telerik team
 answered on 30 Aug 2010
5 answers
122 views
Hello ,

I have a requirement of a grid where rows are all open inside itemtemplate and should be editable by default. Currently I am able to edit one row at a time in the grid . Is there a way I can make all the rows of the grid editable by default  so that I can edit all the rows at once. .

Kishor Dalwadi

Pavlina
Telerik team
 answered on 30 Aug 2010
5 answers
155 views
Hi,
I'm populating a treeView with: 
 TreeNodeExpandMode.ServerSideCallBack

and:
 <telerik:RadTreeView ID="tvScannedURLs" runat="server" 
            OnNodeExpand="tvScannedURLs_NodeExpand">
</telerik:RadTreeView>

My problem is that the tvScannedURLs.NodeExpand event is fires twice for every expand of a node on the tree.
It has no connection to the PostBack property of the page.

Any idea why?
Thanks,
Niv.

Yana
Telerik team
 answered on 30 Aug 2010
8 answers
90 views

In Firefox 3.6, the content area of the scheduler is pushed to the right (see screenshot). I've determined the problem is that the navigation pane (with the buttons to navigate months) is too tall and so the content div gets displaced. This problem happens only in Firefox.

If I set ShowNavigationPane to false, this problem disappears. Also, I can fix the problem with this CSS rule that limits the height of the navigation pane:

1..RadScheduler_Default div.rsTopWrap div.rsHeader p {height:29px !important;}

This problem does not happen with the online Scheduler demos, so what am I doing differently? Am I missing something? I am using RadControls v. 2010.2.713.20, and below is my entire test page:

01.<%@ Page Language="C#" %>
02.<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
03.<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
04.<html xmlns="http://www.w3.org/1999/xhtml">
05.<head runat="server"></head>
06.<body>
07.    <form id="form1" runat="server">
08.        <asp:ScriptManager ID="ScriptManager1" runat="server" />
09.        <div>
10.            <telerik:RadScheduler runat="server" ID="RadScheduler1"
11.                DataKeyField="Id" DataSubjectField="Subject"
12.                DataStartField="Start" DataEndField="End" />
13.        </div>
14.    </form>
15.</body>
16.</html>

Thanks,

jake 

Kamen Bundev
Telerik team
 answered on 30 Aug 2010
1 answer
95 views
Is there anywhere I can get the expaneded ClientSide documentation for the Rotator?  I need to know what vars\args are available in the events...

Thanks,
Steve
Fiko
Telerik team
 answered on 30 Aug 2010
1 answer
137 views
Good Day All

I have a code that add the Menu's Dynamically, the First item on the menu should be "Choose" and i am adding items from a List<string> and the code that does that is look.

ParentRecordsRow[0] = "EVENT"
ParentRecordsRow[1] = "CLASS"


and the count is 2

              
RadMenu1.Flow = ItemFlow.Vertical;
//Add the Root
RadMenuItem item = new RadMenuItem("Choose");
//item.Text = "Add New Items";
RadMenu1.Items.Add(item);
//Bind Men
for (int KK = 0; KK < ParentRecordsRow.Count ; KK++)
{
        RadMenuItem itemSeparator = new RadMenuItem();
 
        RadMenuItem childItem = new RadMenuItem(ParentRecordsRow[KK]);
        //add the menu items
        item.Text = ParentRecordsRow[KK];
        //item.ImageUrl = "~/images/o!logo.png";
        item.Items.Add(childItem);
       
}

ok now the items gets Binded but i get "Events" Item as the First Item, like ITem Header and where it is i want the test "Choose" Now , i have attached the Screen-shot

What i am i doing wrong

Kind Regards

Vuyiswa
Vuyiswa
Top achievements
Rank 2
 answered on 30 Aug 2010
1 answer
374 views
hi
when i click nect page radgrid be empty
 i use radajax manager
plz help to me
<telerik:RadGrid ID="grdShareHolder" runat="server" AllowPaging="True" 
                                       AutoGenerateColumns="False" Font-Names="tahoma" GridLines="None" ShowGroupPanel="True" 
                                       Skin="Office2007" onitemcommand="grdShareHolder_ItemCommand" PageSize="20" 
                                       onneeddatasource="grdShareHolder_NeedDataSource">
                                       <ClientSettings AllowDragToGroup="True">
                                       </ClientSettings>
                                       <MasterTableView DataKeyNames="ShareHolderID" Font-Names="tahoma" 
                                           Font-Size="Small">
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
                   <AjaxSettings>
                       <telerik:AjaxSetting AjaxControlID="btnSearch">
                           <UpdatedControls>
                               <telerik:AjaxUpdatedControl ControlID="btnSearch" 
                                   LoadingPanelID="RadAjaxLoadingPanel1" UpdatePanelHeight="" />
                               <telerik:AjaxUpdatedControl ControlID="grdShareHolder" UpdatePanelHeight="" />
                           </UpdatedControls>
                       </telerik:AjaxSetting>
                       <telerik:AjaxSetting AjaxControlID="grdShareHolder">
                           <UpdatedControls>
                               <telerik:AjaxUpdatedControl ControlID="grdShareHolder" UpdatePanelHeight="" />
                               <telerik:AjaxUpdatedControl ControlID="rwmEditshareHolder" 
                                   LoadingPanelID="RadAjaxLoadingPanel1" UpdatePanelHeight="" />
                           </UpdatedControls>
                       </telerik:AjaxSetting>
                   </AjaxSettings>
               </telerik:RadAjaxManager>
Pavlina
Telerik team
 answered on 30 Aug 2010
1 answer
73 views
Hi Friends,
I am using radgrid, i just want to give a user option to upload the file at server side, i went through all the demos of that upload control
but i don't want to give a option of editing the record to user, user will just click at browse button of upload control in row and he will select the file which he wants to upload (No editing of records just a upload of file for that particular row).
so how should i go through this please let me know.

Thanks in advance.
Manoj Gupta

Shinu
Top achievements
Rank 2
 answered on 30 Aug 2010
2 answers
93 views
Hi,
I would like to put all items in edit mode without additional rebind just like the links as below:
http://www.telerik.com/help/aspnet-ajax/grdputallitemsineditmodenoadditionalrebind.html
http://demos.telerik.com/aspnet-ajax/calendar/examples/datepicker/shareddatepicker/defaultcs.aspx?product=calendar

However, I would like to add an additional "Add New" button for inserting a temporary new row into the edit grid. 
Any Idea?

Thank you.

Regards,
wk
wk
Top achievements
Rank 1
 answered on 30 Aug 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?