Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
56 views
I downloaded the 2009.2.1007 hotfix to fix the issue of RadEditor.get_html() outputting body tags (with contentEditable=true).  This bug renders my app useless, so the hotfix is necessary for me.

However the hotfix seems to introduce always-editable GridCheckBoxColumns, at least for auto-generated columns.  I swapped in the 2009.2.826 dll and the problem went away.

Is this a known issue?  Is it fixed?

Thanks for your help.

Chris
Chris Dalessandri
Top achievements
Rank 1
 answered on 21 Oct 2009
10 answers
194 views
Hi

I'm using the tree view to display names and on clickin the name I'm able to load that persons data into a form. The top level node is the group the person belongs to. This is all driven from code behind with the data coming from a class.

This is my load code to populate the tree.

.DataValueField = 1

.DataSource = dt

.DataFieldID =

"ID"

 

 

 

.DataFieldParentID = "ParentID"

 

 

 

.DataTextField = "Node"

 

 

 

.DataValueField = "ChildID"

 

 

 

.DataBind()

 

 


What I'd like to do now is add an image to the person name - this is the secon level node, and have that fire a separate event, so not to load the paersons details into a form, but rather load their data into a report.

How can I add this image just to the persons name node and fire 2 separate routines.

Andy
Andy Green
Top achievements
Rank 1
 answered on 21 Oct 2009
1 answer
99 views


In the online documentation for the OnClientItemClicking event http://www.telerik.com/help/aspnet-ajax/panel_panelbar_onclientitemclicking.html there is the following javascript:

<script>  
function OnClientItemClicking(sender, args)  
{  
   var item = eventArgs.get_item();  
   var navigateUrl = item.get_navigateUrl();  
   if (navigateUrl && navigateUrl != "#")  
   {  
      var proceed = confirm("Navigate to "+ navigateUrl + " ?");  
      if (!proceed)  
      {  
         eventArgs.set_cancel(true);  
      }  
      else 
      {  
         eventArgs.set_cancel(false);  
      }  
}  
</script> 

You will notice that the variables for the function are "sender" and "args" but everything inside the function uses "eventArgs" instead of "args". This has me going in circles for a while.

Regards,
Konrad
Paul
Telerik team
 answered on 21 Oct 2009
2 answers
74 views
I am having an issue with the Image Manager inside of the Editor.  When I click on the Image Manager icon and the Image Manager window opens, it actually opens behind my RadMenu.  You can grab and move the Image Manager window, but automatically it opens with the top part behind the menu.  The Document Manager also does the same thing.

Any ideas?
Svetlina Anati
Telerik team
 answered on 21 Oct 2009
1 answer
47 views
Hi!

Are there any special considerations to take into account when you dynamically create a structure where you put Docks inside DockZones that in turn are children of Docks inside DockZone? Do you see what I mean?
Pero
Telerik team
 answered on 21 Oct 2009
3 answers
153 views
Hi!

I want to create a RadDock on the mousedown event on a button and attach it to the mouse pointer so I can drag and drop it in a raddockzone. Is this possible?
Pero
Telerik team
 answered on 21 Oct 2009
2 answers
114 views
I am trying to replace <noscript> tags with [noscript] in the OnClientSubmit function but when I click the submit button nothing happens. Can you tell me what I'm doing wrong?

function OnClientSubmit(editor, args) {
     var content = editor.GetText();
    
     if (content) {
     newContent = content.replace('<noscript>', '[noscript]');
     newContent = content.replace('</noscript>', '[/noscript]');
     }
     <%=textEditor.ClientID%>.Submit();
     return false;
    }
Lini
Telerik team
 answered on 21 Oct 2009
1 answer
72 views
Hi

I have a grid with 20 columns. I exported the grid data to PDF.

My requirement is, i want to show this generated PDF in landscape format by showing all 20 column's data.

I have set below code for landscape 
<Pdf PageWidth="297mm" PageHeight="210mm" />
now my issue is all the columns in the generated PDF is not properly aligned. Some of the columns are sitting on one other.

How to adjust to view all the columns because i need to print that pdf document for reporting purpose.


Regards,
Satya


Princy
Top achievements
Rank 2
 answered on 21 Oct 2009
1 answer
144 views
I have created a ComboBox on a page and I am adding the SelectedIndexChanged event handler via code in the page load event. When I dynamically add an item to the ComboBox and select the new Item during the adding process I would expect the SelectedIndexChanged event to fire. The AutoPostBack property is set to true and only one item exists in the ComboBox.

Please could someone tell me if I am doing something stupid or if this is a bug with the control.

Thanks.
Princy
Top achievements
Rank 2
 answered on 21 Oct 2009
5 answers
181 views
Hello,

I have a rad grid that need to have diffirent edit popup windows. This example:
http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/popupeditform/defaultcs.aspx
has everything I need except how to specify different edit po pups. Like when  a user tries to edit one row it shows only 3 options for editing, when he tries another row 5 e.t.c.
Aleks A
Top achievements
Rank 1
 answered on 21 Oct 2009
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?