Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
187 views
I have an odd problem. I have two iframes on the page, one on top of the other. I open a model window in the bottom iframe. The window manager is located in the parent frame so that the modal window can cover the whole page. Now the problem is if I close the modal window in IE, the parent window scrolls up automatically. It does not happen in Firefox. You can see what I mean here. https://apps.kd.iu.edu/website1/

Any ideas? I am using the latest release. Thanks.
tom
Georgi Tunev
Telerik team
 answered on 22 Feb 2010
3 answers
143 views
Hello,

I successfully associated RadScheduler and RadTooltipManager to show custom tooltip for my appointment. I only work with the timeline view but I have a problem in a particular case.

When an appointment cannot be shown entirely in the period displayed, a link in the appointment allow the users to go to the next period in order to see the next part of the appointment.
If I set the ShowEvent property of the RadTooltipManager to "OnClick", the tooltip behave as wanted but the link previously mentionned doesn't work anymore.

Could you help me to have this link work even if the tooltip should appear only after a click ?

Thanks

Cedric
Cedric STEPHAN
Top achievements
Rank 1
 answered on 22 Feb 2010
2 answers
115 views
Hi there

Is it a bug when i call radWindow.close(0), the event handler e.get_argument() returns null?
I've tried a couple of different things (other values, text etc.), which works fine, but it seems like 0 is treated as null instead of zero.


Kenneth
Svetlina Anati
Telerik team
 answered on 22 Feb 2010
1 answer
104 views
Hi all.
In my grid I have a GridClientSelectColumn
<telerik:GridClientSelectColumn UniqueName="ClientSelectColumn" HeaderStyle-Width="35"/>
and a client side paging.
When I select a row, for example first from the bottom and switch to next page with results, on the next page the same row is selected either. Can someone give me a proper solution to fix it?
Łukasz Kuryło
Top achievements
Rank 1
 answered on 22 Feb 2010
4 answers
155 views
Hi,
I have to Toggle the tools on the Editor based on the custom button click in the Editor itself. Basically We are trying to implement to display only few tools when we load the editor and there is a custom button added in it clicking on which full editor tools need to be displayed. Again there would be a minimize tools button clicking on which it has to hide  all the tools except the basic tools which we were displaing when the editor is loaded. This toggling has to be done on the client side. So we dropped the plan of changing the tool file on the code behid using AJAX async postback.

I have tried implementing various options and implemented few stuffs. And I have few issues with it.

1. The Visible attribute for the Tools tag in XML is not working. - I have to hide the tools first time when I load the editor. still this tool set is visible in the tool bar. Sample:
<tools name="fullEditorToolSet2" visible="false">  
  <tool separator="true" /> 
  <tool name="Undo" /> 
  <tool name="Redo" /> 
  <tool separator="true" /> 
 </tools> 
 
Even setting visibility for a specific tool dosn't work.
<tool name="Undo" visible="false"/> 

2. I have gone throught this thread
http://www.telerik.com/community/forums/aspnet/editor/toolbars-tools-visible-fullscreen.aspx
and found code to create event handler to hide the seperator and also to hide the tool space and the final code given there 
editor.AttachEventHandler(  
 
"onfocus"function() { .......});   
 
 

 is throwing a javascript error saying object dosenot suppot this property.(I am working on the lates editor release)

3.I tried implementing this way....I already have 2 custom button and the event created for it. So I am trying to do some thing like this

 

Telerik.Web.UI.Editor.CommandList["AdvancedTools"] = function(commandName, editor, args) {  
 
var tool = editor.getToolByName("Paste");   
tool.set_visible(true);   
   
var tool = editor.getToolByName("ImageManager");   
tool.set_visible(true);   
   
var tool = editor.getToolByName("FlashManager");   
 tool.set_visible(true);  
 
var tool = editor.getToolByName("MinTools");   
tool.set_visible(true);   
   
var tool = editor.getToolByName("AdvancedTools");   
tool.set_visible(false);  
}  
 
Telerik.Web.UI.Editor.CommandList["MinTools"] = function(commandName, editor, args)   
 {  
 
 var tool = editor.getToolByName("Paste");   
 tool.set_visible(false);   
 
var tool = editor.getToolByName("ImageManager");   
 tool.set_visible(false);   
 
var tool = editor.getToolByName("FlashManager");   
 tool.set_visible(false);  
   
 var tool = editor.getToolByName("MinTools");   
 tool.set_visible(false);   
   
var tool = editor.getToolByName("AdvancedTools");   
 tool.set_visible(true);   
 }  
 
 

Show Advanced tools are working fine but when i minimize the tools there is a gap and seperators displayed(its just hiding the tool and so the space is left as such) and I am not able to hide the  tool seperator also.

Also I need some way to hide the tools(by default) when I load the editor first time.

Or Is there a way to change the tool file(XML) for the editor on the client side based on the toggling? so that I can create 2 files and toggle between those.

Can any one please help me?

Thanks,
Akila.

 

 





Dobromir
Telerik team
 answered on 22 Feb 2010
1 answer
135 views
Hi,

From your Help comes the following excerpt:

When in a folder not having upload rights, the Upload tab is disabled. The Create New Folder operation is disabled as well.

Is it possible to define these two seperately?

BR,
Marc




Dobromir
Telerik team
 answered on 22 Feb 2010
3 answers
462 views
<telerik:RadComboBox ID="AreaOfInterestComboBox" runat="server" AutoPostBack="false" CssClass="areaOfInterestComboBox" Skin="Bazaar" EnableEmbeddedSkins="false" OnDataBound="AreaOfInterestComboBox_ItemDataBound"
    <ItemTemplate> 
        <asp:CheckBox runat="server" ID="cbCategory" Text="" AutoPostBack="false" onclick="stopPropagation(event);" /> 
        <%# DataBinder.Eval(Container, "Text") %> 
    </ItemTemplate> 
</telerik:RadComboBox> 


protected void AreaOfInterestComboBox_ItemDataBound(object sender, Telerik.Web.UI.RadComboBoxItemEventArgs e) 


Cant get this to work, why? I need to be able to make the CheckBoxed Checked or unchecked in the Event OnItemDataBound, Is it possible?

"Compiler Error Message: CS0123: No overload for 'AreaOfInterestComboBox_ItemDataBound' matches delegate 'System.EventHandler'"

And Visual Studio can't resolva "RadComboBoxItemDataBoundEventArgs", cant use namespace Telerik.WebControls!
sitefinitysteve
Top achievements
Rank 2
Iron
Iron
Veteran
 answered on 22 Feb 2010
1 answer
122 views
Hi,


I have made a web user control (inside an ASP.NET web application) and then pasted this to a class library. I want to use telerik controls but the tagname I register in the ascx is not being recognised, and nor is the Telerik namespace (I added the Telerik.Web.UI dll as a reference to the class lib).

This is for a Sitefinity deployment. A better question is, if this does not work, what is the best way to develop controls, with Telerik Controls, for Sitefinity?


Thanks
Ivan Dimitrov
Telerik team
 answered on 22 Feb 2010
3 answers
699 views
Hello,
I'm building an application that uses RadGrid and I want to know is there a way to delete a row(and the DataItem) from the RadGrid using only JavaScript.

I.Hinov
Ivaylo
Top achievements
Rank 1
 answered on 22 Feb 2010
3 answers
305 views
I have a rad uploader with customized fields.. ( eg. description , title )

But I want to display the file name after clickin the browse button
i need to display the file name on the right side of the uploader ( client side )
there is a method of displayin all files using alert..

but I am still unable to make it work one by one..

thanks in advance
Chamira
Top achievements
Rank 1
 answered on 22 Feb 2010
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?