ExportSettings-ExportOnlyData
="true" property for my grid which shows me only record in excel but does'nt show me the inner content of grid.
| protected void frmIdCliente_ItemsRequested(object o, RadComboBoxItemsRequestedEventArgs e) |
| { |
| string text = e.Text; |
| frmIdCliente.Items.Clear(); |
| ANCLI0.PopolaRadCombo(ref frmIdCliente, text, "C", 10); |
| } |
| public static void PopolaRadCombo(ref RadComboBox ComboBoxToPopulate, String Filter, String FLCLF, Int32 NumeroRisultati) |
| { |
| RadComboBoxItem Cliente; |
| ANCLI0 xxx = new ANCLI0(); |
| Hashtable Hashclienti = xxx.Cerca(Filter.ToString(), NumeroRisultati, "OMBBG", FLCLF); |
| foreach (DictionaryEntry Entry in Hashclienti) |
| { |
| xxx = new ANCLI0(Entry.Key.ToString()); |
| Cliente = new RadComboBoxItem(); |
| Cliente.Text = xxx.DescrizioneCompleta; |
| Cliente.Value = Entry.Key.ToString(); |
| Cliente.Attributes.Add("Indirizzo", xxx.IndirizzoCompleto); |
| //se cliente non accetta ordini lo evidenzio in rosso |
| if (xxx.ANCLI0_ACCOR == "NO") |
| { |
| Cliente.BackColor = System.Drawing.Color.Red; |
| Cliente.Enabled = false; |
| } |
| ComboBoxToPopulate.Items.Add(Cliente); |
| } |
| ComboBoxToPopulate.SortItems(); |
| } |
| <telerik:RadComboBox ID="frmIdCliente" runat="server" AllowCustomText="True" EnableLoadOnDemand="True" |
| HighlightTemplatedItems="true" MarkFirstMatch="True" |
| OnItemsRequested="frmIdCliente_ItemsRequested" |
| SkinsPath="~/RadControls/ComboBox/Skins" Width="150px" Skin="WebBlue"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| <ItemTemplate> |
| <table style="width:300px;border-bottom:1px solid black;padding:5px 0 5px 0;" cellspacing = 0 cellpadding = 0 class="normal"> |
| <tr> |
| <td style="width:150px; text-align: left"> |
| <asp:Label ID="Label1" runat="server" Text='<%# Eval("Text") %>'></asp:Label> |
| </td> |
| <td style="width:150px; text-align: left"> |
| <%# DataBinder.Eval(Container.DataItem, "Text")%> |
| <%# DataBinder.Eval(Container, "Attributes['Indirizzo']")%> |
| <%# DataBinder.Eval(Container.DataItem, "Attributes 'Indirizzo']")%> |
| <%# Container.Attributes["Indirizzo"].ToString() %> |
| </td> |
| </tr> |
| </table> |
| </ItemTemplate> |
| </telerik:RadComboBox> |

Hi,
I've a problem with new release Q1 2009 with RadMenu.
My menu have a 'custom design' with a custom skin as write in :
http://www.telerik.com/help/aspnet-ajax/menu_appearancecreatingacustomskin.html
With Q3 2008 the design of menu is correct :http://93.93.202.98/data/other/Q32008Correct.png
With Q1 2009 the design is incorrect : http://93.93.202.98/data/other/Q12009incorrect.png
The problem are two :
- Items height is 50% of the height of the cell
- Child Items height is too small
I think that the problem is in
.RadMenu_Green .rmLink
{
line-height: 26px;
.....
but I changhe this tag with
.RadMenu_Green .rmLink
{
line-height: 200px;
.....
I not see differences.
This is my CSS : http://93.93.202.98/data/other/Menu.Default.css
Help?
Thanks
Marco
