Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
78 views
hi,

how can i show image at right side of selected node????
Veronica
Telerik team
 answered on 01 Apr 2011
2 answers
73 views
Hi

  We are facing problem with drag and drop feature in tree view particularly in MAC, when we drag and drop items inside grid view from one item to another or if we try to rename the items inside grid view or if we drag n drop items to telerik tree view, data won't get updated or its updated very very slowly.

  Just wanted to know if this a known issue in MAC or if there is work around.

thanks
Pramodh
Pavel
Telerik team
 answered on 01 Apr 2011
5 answers
170 views

We are evaluating Rad Editor (version 5) for MOSS. We have a custom theme for our site and after using the Rad Editor, we noticed that the styles are not the same as our theme. What my end result is that when ever a user adds this webpart to their site,  and adds content, the fonts and styles would be the same fonts as our custom theme. I have read the documentation at http://www.telerik.com/support/kb/aspnet-ajax/sharepoint/populating-radeditor-s-apply-css-class-dropdown-with-custom-styles.aspx and followed these instructions, but it seems that when I add content to the page it does not follow the new CSS file that I created at  /Program Files/Common Files/Microsoft Shared/web server extensions/wpresources/custom.css. I added this to my toolsfile.xml

<cssFiles> 
    <item name="/_wpresources/Custom.css " /> 
  </cssFiles>


It looks like its still referencing HtmlEditorTableFormats.css and HtmlEditorCustomStyles.css.
Again, my end result would be that when a user adds content to this webpart it would use our theme css file. I just downloaded this webpart and haven't had much time to play with  it.
Stanimir
Telerik team
 answered on 01 Apr 2011
2 answers
89 views
Hello,

I'm just embarking on using the Async Upload.  This is an awesome and easy-to-use tool.  I was able to take a cumbersome process where users were uploading several files one at a time, and make it so they could select all of the files at once.  Beautiful!

Everything is working well, except that I think the progress area has room for improvement.

First, and most importantly, when I'm uploading several files, the progress meter seems only to be aware of the file that's currently uploading, as well as files that have completed.  For example, say you're uploading 5 files.  When the first file is uploading, both progress bars reflect only that file.  The top one shows the percentage of the current file, and the bottom one shows 0%, or 0/1 files.  Once the first file completes, and the second one starts, the top bar shows progress considering only the first two files, so it starts at 50% (assuming the files are roughly the same size), and the bottom bar shows 50%, or 1/2 files.  Once the second file completes, and the third one starts, the top bar shows progress considering only the first three files, so it starts at about 66% (again, assuming the files are roughly the same size), and the bottom bar shows 66%, or 2/3 files. 

Am I doing something wrong, or is this a known bug?  FYI, I tested the demo page at http://demos.telerik.com/aspnet-ajax/upload/examples/async/multiplefileselection/defaultcs.aspx?product=asyncupload, and I saw the same behavior.  I selected 3 files that were about 3MB each.

Second, I find the fact that the progress area disappears upon completion of the uploads to be visually confusing.  Consider when an upload only takes a second or two.  You don't have sufficient time to recognize what you're looking at before it disappears.  I would like the option to have the progress area stay open.  Is this possible?  None of the demos do this, so I fear not.  If that's the case, would you consider making this an option?

Thank you.
Peter Filipov
Telerik team
 answered on 01 Apr 2011
2 answers
108 views
Currently we are working on a new project. With the new RadRibbonBar (using v.2011.1.315.40) - which is very nice - we decide to try to implement a RibbonBar for the RadEditor. Basically we are rewiring all the calls to the RadEditor using the javascript fire() method just as in the example at the demo site.

Sofar this was working perfectly. However when doing:

editor.fire("MediaManager");

we will get the javascript error:

"Runtime-fout Microsoft JScript: Sys.ArgumentNullException: Dialog Parameters for the MediaManager dialog do not exist
Parameter name: dialogName"


A trace on the  editor javascript object showed that

editor._dialogOpener._dialogDefinitions.MediaManager

Is expected but does not exists. (See attachment) For all to other dialogs like 'LinkManager' or 'TableWizard' it the DialogDefinitions are set.

---

To overcome this problem we tried to create a work-arround:

var ImageManagerDefinitions = editor._dialogOpener._dialogDefinitions.ImageManager;
var MediaManagerDefinitions = objectCloner(ImageManagerDefinitions)
MediaManagerDefinitions.Title = "Media Manager";
editor._dialogOpener._dialogDefinitions.MediaManager = MediaManagerDefinitions;

However this is not the full solution.. Because the ImageManager is now loaded. To make the work-arround functional de SerizalizedParameter of the Media Manager is required. Sofar we didn't find out how to get this Parameter.

Hope you can fix this bug and  tell us how to get that SerizalizedParameter  or tell us that we are doing something realy wrong here...





Dobromir
Telerik team
 answered on 01 Apr 2011
1 answer
210 views
Hi,

I am using a TreeView that is bind to databse.
I am using CheckBoxes="true" TriStateCheckBoxes="true"  CheckChildNodes="true"

Look somthing like this but checkbox ;

Node 1 :
  • item 1
  • item 2
  • item 3

Node 2:

  • item 11
  • item 22
  • item 33

How can i find if the parent node is check?
Here what i need to do!

If the user click item 1 and item 3 and click submit
He will recive a message that item 1 and item 3 is check
For that part i have no probleme

But if  he check item 1 , item 2 and item 3 "all the item"  then
He will receive a message that  Node 1 is check


Any idea how can do this?
For the first part i am using something like this :

Dim nodeCollection As IList(Of RadTreeNode) = RadTreeView1.CheckedNodes
  
        For Each node As RadTreeNode In nodeCollection
              MsgBox()
           Next



Princy
Top achievements
Rank 2
 answered on 01 Apr 2011
1 answer
167 views
Hi,

I am using a RadGrid with Column filtering enabled.
What i would like to achieve is to Apply all RadGrid column filters at once with a button_click, and somehow disable the automatic refresh for every single column.

I was thinking i could disable the refresh that is getting triggered after setting a column filter, but was unable to do so.

Any help would be appreciated!
Thanks!
Daniel
Telerik team
 answered on 01 Apr 2011
1 answer
334 views
How to Open a POST Method RadWindow From CodeBehind,
and How to get these Controls Value from Parent Page?

WebForm1.aspx
<telerik:RadTextBox ID="RadTextBoxNodeName" Text="Jeff" Runat="server" /> 
<telerik:RadTextBox ID="RadTextBoxNodeType" Text="Student" Runat="server" />
<telerik:RadTextBox ID="RadTextBoxNodeMemo" Text="Test ..." Runat="server" />
<telerik:RadButton ID="RadButton1" runat="server" Text="OK" onclick="RadButton1_Click">
  
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>

WebForm1.aspx.cs
protected void RadButton1_Click(object sender, EventArgs e)   
{  
    RadWindow rwin = new RadWindow();    
    rwin.VisibleOnPageLoad = true;    
    rwin.NavigateUrl = "/window.aspx";
    this.RadWindowManager1.Windows.Add(rwin);   
}

Window.aspx
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>

Window.aspx.cs
private void Page_Load(object sender, System.EventArgs e)   
{  
    this.Label1.Text = Request.HttpMethod;  // Post or Get
}
Princy
Top achievements
Rank 2
 answered on 01 Apr 2011
3 answers
403 views
Hi all,
I've got a problem with radtextbox in my page. If I use javascript to insert text in a RadTextBox I can do it easily and it works well, but if I try to access thata text server-side, radtextbox.text property is ALWAYS empty, even if I type into it, not only if I set it using Javascript.

My text box is defined as follow
<telerik:RadTextBox TextMode="MultiLine" runat="server" ID="txtNote" MaxLength="512" Rows="5" Width="100%" />

Kind regards
Riccardo
Riccardo
Top achievements
Rank 1
 answered on 01 Apr 2011
7 answers
386 views
Hi,

I have been unsuccessful in my attempts to install Telerik.Web.ui.dll into the GAC on our Win 2008 server r2.  I have tried everything from drag drop to windows\assembly (doesn't show an error, doesn't install) to gacutil from 2.0 sdk (error with telerik assy being greater than current assembly) to gacutil 4.0 from VS 2010 tools.  I am running my sites under .NET 4.0 and have set all application pools to use .NET 4.0. 

Is there any way to do this other than placing the telerik.web.ui.dll in each bin folder for each app?

Thanks!
Vasil
Telerik team
 answered on 01 Apr 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?