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

Hi,

I am using Editor control in my application and using default skin for editor control. As by default it was giving black color Bold,Cut,copy paste controls on editor control with your bold,cut,copy paste images. I would like to change those images. Can you please let me know what is the easiest step to achieve it.


I am okay to copy all your editor images and stylesheet in my application. Please let me know what are those and what the change is required in my application.


Thanks,

Tarulatta Patel

Rumen
Telerik team
 answered on 12 Jan 2009
7 answers
166 views
Dear All,

Kindly advice if there is a way to customize the Display of Fonts and Colors in Free Lite Edition. For example, I want to display only "Verdana" in the Font drop down instead of 6 font names that are being displayed now. Similary, I would like to restrict the display of 8 colors instead of the whole palette.

Thanks in advance for your suggestions and help.

Warm Regards,
Satheesh
Marja
Top achievements
Rank 1
 answered on 12 Jan 2009
1 answer
123 views
Hi,

I am using the customer FormTemplate for RadGrid editing/inserting which editmode is popup. Within customer FormTemplate, there are two textbox,  I want to do a spell check for these two textbox before update/insert.

I have read the code sample for spell check multiple textareas. 
http://www.telerik.com/help/aspnet-ajax/spell_howtomutlipletextareas.html
 
But for this popup formtemplate, I don't know where to plug in those javascript.

Thanks.

Rumen
Telerik team
 answered on 12 Jan 2009
1 answer
127 views
Hi,

Using RadGrid v2008.3.1204.35, I'm DataBinding to an object datasource. Each object has aggregated objects, for example
class ClassA { 
  private ClassB _objB; 
  private ClassC _objC; 
 
  public ClassB ObjB { get { return _objB; } } 
  public ClassC ObjC { get { return _objC; } } 
  ...  

List<ClassA> list = new List<ClassA>(); 
... 
RadGrid.DataSource = list; 

I'm trying to set ClientDataKeyName to use the Id of the an aggregate object :
<MasterTableView ClientDataKeyNames="ObjB.Id"

but I receive the following exception :
DataBinding: 'ClassA' does not contain a property with the name 'ObjB.Id' 

I am able to declare a GridBoundColumn's DataField to the following without any problem though :
<telerik:GridBoundColumn UniqueName="Name" DataField="ObjB.Name" DataType="System.String" HeaderText="Name" /> 

What is the problem? Can you provide any valid workaround ? I've found this thread, but is there a better way ? I'd like to avoid using a flat DataSet or a flat result object if possible...

Thanks,

Dominic.
Rosen
Telerik team
 answered on 12 Jan 2009
1 answer
112 views
Hi All,

I would like to know what are the possible mean of preventing the radupload from clearing the selected file on a postback?
Erjan Gavalji
Telerik team
 answered on 12 Jan 2009
1 answer
111 views
I have a sharepoint site with a web part using the Upload control. On my test server it works fine.

On my live server the upload control only displays the add and delete button at the bottom of the control with no text. The file selection and remove input/buttons do not appear at all.

I have checked I have the skin uploaded and when I change the css it changes the layout.

I also made a non sharepoint page and added a rad control pointing to the dll in the gac and this worked fine on the live server.

From this I can assume my dll in the gac is working and the skins for the control are working but I am not sure why it doesn't display the entire control.

I looked at the html it produces on both servers and they match and now I have notice that a javascript function is missing on my life server. I am not sure why this script is on my test server but not my live server.

Any info that may lead me in the right direction will be appreciated.

Thanks

Missing Javascript from live server below

<script type="text/javascript">  
          
window['FileUpload2'] = new RadUploadNameSpace.RadUpload([  
'FileUpload2',  
'form1',  
'en-US',  
 false,  
 true,  
 0,  
 2,  
 true,  
 false,  
 ['.xml'],  
 27,  
'',  
'',  
'',  
'',  
'',  
''  
]);  
    </script> 


Erjan Gavalji
Telerik team
 answered on 12 Jan 2009
1 answer
178 views
Hi.

In help documentation you wrote that we should not use several script managers and even ajax managers on the same page.
Lets consider an example:
I have a main page with script manager, ajax manager and radwindow.

So I'm opening in the main page radwindow with page A inside it.
Page A also complex - it contains many controls, ajax manager, script manager etc.

Basically, radwindow is an iframe, so all elements from main page and page A are located "at the same page" - in one DOM object.
So in such situation we have several ajax and script managers in the same page.

How to omit this?
What would you recommend to do in such situation?

/Thank you!
Georgi Krustev
Telerik team
 answered on 12 Jan 2009
1 answer
182 views

Hello,

I have included the Image Manager into our Rad Editor control and can successfully set sub directories for images so that users can upload pictures to a folder and use them in the Edtior pane.

I now have a new requirement whereby i need to set the imagepaths and uploadimagepaths settings  to an image directory that is outside of the hosting web application, i.e. the hosting web application that runs the Rad editor control is called Web App A, the residing image directory to upload images to is a sub directory in Web App B. (Both Web apps are located on the same server)

I have applied a full UNC path to this external image directory,
i.e.:

 

\\servername\corporate$\images\cms_images\

 

 
However im having no luck in getting the upload image tab to be enabled in the Editor control when i click on the Image Manager.

Like i mentioned earlier i can get sub and virtual directories (pointing to an external directory outside of the app) running within the hosting application to enable the uploads tab successfully BUT due to access restrictions with certain users i need it to point to a different web application directory.  The virtual directory wont work for me as im still referencing the hosting applications name in the url which certain users wont be able to access.

Both my settings are as follows:

imagespaths="\\servername\corporate$\images\cms_images"

 

uploadimagespaths="\\servername\corporate$\images\cms_images"

This path works correctly when i run it in windows explorer and has the necessary .NET write permissions granted.

Can someone give me some guidance on this as im now a little lost.

I hope this information is clear enough.

Thanks

Rumen
Telerik team
 answered on 12 Jan 2009
0 answers
152 views
Hi,
I get the 'Telerik.Web.UI.RadEditor' does not have a public property named 'ExportSettings' error message if I try use

<ExportSettings ..> in my RadEditor settings.

Any Idea why??
(using v Q2 2008), upgraded from q4 2006 via zip file.

<

telerik:RadEditor ID="RadEditor1" runat="server"

 

 

Style="position: relative"

 

 

Width="99%" Height="300px"

 

 

OnClientCommandExecuting="OnClientCommandExecuting">

 

 

<ExportSettings OpenInNewWindow="true" />

 

 

 

<Content>

 

 

</Content>

 

 

</telerik:RadEditor>

 

Neal
Top achievements
Rank 1
 asked on 12 Jan 2009
2 answers
117 views
Hi,
I'm trying to set grid's appearance in FF and IE 6/7. I have 5 columns to display in grid. I want that these columns will take all width of grid.
I put the code:
grid.HorizontalAlign = HorizontalAlign.Justify; 

but it's not working. I have empty place in grid between columns and border. I showed this situation below:
_________________
|  free columns free  |
|         columns          |
|_________________|

How can I mend it?
Princy
Top achievements
Rank 2
 answered on 12 Jan 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?