Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
116 views
Hi,

Does anyone know how to perform lookups to display the description of a field rather than its key value in a radgrid using the built in features of the grid - I've tried including the foreign tables/fields in the SELECT statement but then the update/append/delete features don't work properly. 

For example instead of displaying EmpID I want the grid to display the employee name, but the employee name is stored in a different table.

I've got this to work in a new template column using a combobox but this is only visible whilst editing! :o( I need the value to be displayed in the grid proper.

Any help would be appreciated! :o)

C.

Charles
Top achievements
Rank 1
 asked on 13 Nov 2008
2 answers
82 views
Hi,

I was try telerik ASP.NET AJAX Q2 2008 with Visual Studio 2005. I want to make a dependency radcombo (bind to database) inside the radgrid. is there any way to make this. please help me. an example will be appreciate. thanks

peper
Peper
Top achievements
Rank 1
 answered on 13 Nov 2008
2 answers
66 views
Hi. I need to get the value from a cell. I'm able to get the value of a row that's been clicked on, but I'm wondering how I can get a value from one that wasn't clicked?

I'd like to use something similar to: 

variable = radgrid1.Items.Item(row index).cells(cell index)

but this hasn't worked.

Thanks

William
Top achievements
Rank 1
 answered on 12 Nov 2008
2 answers
146 views
Hi,

I set chart using telerik radchart. The X axis is showing date, the display is OK, yyyy-mm-dd. For my Y axis it is a currency value, here's my code:
       chart.PlotArea.YAxis.Appearance.ValueFormat = Telerik.Charting.Styles.ChartValueFormat.Currency;

The culture of my apsx page is Culture="fr-CA" UICulture="fr-CA", I did not find anything to set the culture of the RadChart.
My problem is the currency number on the Y axis not display in the fr-CA culture like 10,00$ it display as 10.00$

What I am suppose to do to fix this ?

thanks
J-Francois
Jean-Francois
Top achievements
Rank 1
 answered on 12 Nov 2008
2 answers
106 views

I recently switched to the Q3.2008 build (1105), and I have a new formatting issue.  I'm using <TimelineView UserSelectable="false" /> to hide the TimeLine button in the header, and now there is a space at the end of the header.  On previous builds, that space was not there.  It only seems to show up using the Office2007 skin.  Please advise.


 

Loren
Top achievements
Rank 1
 answered on 12 Nov 2008
1 answer
85 views
Hi, just wondering if there's an option to purchase the editor on its own, rather than part of the larger package?
Rumen
Telerik team
 answered on 12 Nov 2008
6 answers
275 views

 

The RadEditor doesn't seem to pick up the styles from the content style sheet.  In particular, when a table is created in the RadEditor, the expected behavior is the default table style (see style sheet definition below) should be applied.  This is the saved content table tag:

<P>  <TABLE>  <TBODY>  <TR>  <TD>one&nbsp;</TD>  <TD>&nbsp;two</TD>  <TD>&nbsp;three</TD></TR>  <TR>  <TD>&nbsp;</TD>  <TD>&nbsp;</TD>  <TD>&nbsp;</TD></TR>  <TR>  <TD>&nbsp;</TD>  <TD>&nbsp;</TD>  <TD>&nbsp;</TD></TR></TBODY></TABLE></P>

Note there is no black solid border applied as defined in the style sheet.  This causes the saved data to display with no table border in a report created from this saved data.

How can I correct this?

Thanks!
Michelle

Here is the Control declaration in the .aspx page:<
<
telerik:RadEditor ID="RadEditor1" runat="server" Skin="Web20" Height="800px" Width="975px" NewLineBr=false Style="overflow: scroll"

 

 

 

EnableEmbeddedScripts="False" EditModes="Design" OnClientLoad="OnClientLoad" >

 

 

 

<CssFiles>

 

 

 

<telerik:EditorCssFile Value="~/css/EditorContentArea.css" />

 

 

 

</CssFiles>

 

 

 

</telerik:RadEditor>

EditorContentArea.css:

 

body

 

{

 

 

 

font-family

 

: Arial;

 

 

 

 

font-size

 

: 10pt;

 

}

 

 

 

table

 

 

 

{

 

 

border-color:Black;

 

 

 

border-width:1pt;

 

 

 

padding :2pt 2pt;

 

 

 

border-style:solid;

 

}

 

 

 

table

 

td

 

 

 

 

{

 

 

 

border-color:Black;

 

 

 

border-width:1pt;

 

 

 

padding :2pt 2pt;

 

 

 

border-style:solid;

 

 

 

font-family: Arial;

 

 

 

font-size: 10pt;

 

}

 

 

 

table

 

th

 

 

 

 

{

 

 

 

border-color:Black;

 

 

 

border-width:1pt;

 

 

 

padding :2pt 2pt;

 

 

 

border-style:solid;

 

}

 

 

 

.RadEWrongWord

 

 

 

{

 

 

background-color: yellow;

 

}

 

 

Rumen
Telerik team
 answered on 12 Nov 2008
3 answers
172 views
I have an image I need to use instead of the exiting out of the box image that appears on the toolbar, I have tried replacingthe MOSSLinkManager.gif but that didn't work. Is there a place to do this?
Rumen
Telerik team
 answered on 12 Nov 2008
3 answers
90 views
I had been trying to solve an issue with the radeditor lite for sharepoint where the textarea height was too small and any changes to the config.xml files did not help.

The workaround I came up with was to add the following line to our master.css file which is pulled in throughout our sharepoint site.
td.RadEContentContainer iframe {height:300px !important}

Tom

Rumen
Telerik team
 answered on 12 Nov 2008
1 answer
87 views
Hi,
   I am using Telerik controls RadAjax  2008.2.1001.35. I am programmatically creating the RadEditor on my ASPX page. 
I cannot get the EditorContentArea.css to be applied to the RadEditor.

Thanks, Andy

            mradEditor.AutoResizeHeight = False
            mradEditor.TabIndex = Me.TabOrder
            mradEditor.EnableEmbeddedSkins = False
            mradEditor.Skin = "Default"         'As of 2008.2.1001.35 The Outlook2007 skin still does not work with the RadEditor solution for 1px border
            mradEditor.ToolbarMode = Telerik.Web.UI.EditorToolbarMode.ShowOnFocus
            mradEditor.ToolsWidth = Unit.Pixel(500)   ' 2008.2.723.35 needed as my workaround for the RadEditor defaults the toolbar to 0px wide
            mradEditor.EditModes = Telerik.Web.UI.EditModes.Design
            mradEditor.ToolsFile = "~/App_Data/RadEditor/NotesFieldEditorToolbars.xml"
            mradEditor.ContentAreaCssFile = "~/Skins/Default/EditorContentArea.css"
Rumen
Telerik team
 answered on 12 Nov 2008
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?