Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
153 views
Hi, I have a problem setting the columns width.
I set a width for a particular column call "description" that is the 4th. column in the grid (for example) using HeaderStyle-Width, the problem is that when I scroll the grid horizontally, the column that is now in the 4th place takes the width of the column for wich I set that width.
any ideas?
fer
Top achievements
Rank 1
 answered on 17 Apr 2009
3 answers
192 views
Hello, i need 2 buttons
1 Button for to export to EXCEL my charts and other for to print my charts
Can somebody send me a example=?

Thanx!
Dessy
Telerik team
 answered on 17 Apr 2009
5 answers
139 views
Most of my visible real-estate on the form contains textboxes for gathering search arguments, which are used to search a database, and the grid displays the results of the search. Only the top few rows of the grid are visible above the bottom of the window, and I'd like to be able to use the javascript NavigateTo() function to reposition the screen after the database results are returned and the grid is populated. 

function GridHasData {
NavigateTo('RESULTS');
}
<a id='RESULTS'></a>
<div id='telerikgridcontainer'>
  // grid here
</div>

But there doesn't seem to be a client-side event associated with "the grid has been populated with data".  Is there a way to invoke my function from the server side after I've assigned the datasource?

Thanks

Iana Tsolova
Telerik team
 answered on 17 Apr 2009
1 answer
102 views
Hello Sir,
Please see the screen shot attached.I have a query regarding Export to Excel.
If you see my screen shot, I have a grid with nestedviewtemplate column. When i expand the first row of my grid and click on export to excel button i get the data with only first row details contents and not all record contents in excel. I want to export each rows details contents to excel. how do i achieve this functionality?
If you refer the excel file i have attached, i want to show only data to excel and not the button and textbox of filtering.how do i achieve this? I have used

ExportSettings-ExportOnlyData

 

="true" property for my grid which shows me only record in excel but does'nt show me the inner content of grid.

 

 
Please help me with this.
Thanks,
Jwalant Dange
Pavlina
Telerik team
 answered on 17 Apr 2009
1 answer
114 views
Hi!

I'seen some threads discussing this topic. But none of them was satisfying.
My task is to print the page from the browser. On the page is RadScheduler with some appointments. Each appointment has its own background color and forecolor. The colors are set in AppointmentCreated event (e.Appointment.BackColor = , e.Appointment.ForeColor). When i print the page i have no colors. All appointments are white boxes with black text.

Could anybody help with styling radsheduler to print it with colors that i set?
I have got controls from the last version of 2008.

Thanks!
Radek
Alex Gyoshev
Telerik team
 answered on 17 Apr 2009
6 answers
178 views


Hello Telerik team,

I have a question regarding Rad Grid
I couldn't find any example on how to do paging if the grid isn't using the SqlDataSource control !!!
I'm binding data to my Rad Grid manually [ defining connection, command, and calling a stored procedure then bind the value to it ]
the problem I'm facing is that I don't know how to implement paging.

Any example or hint would be highly appreciated.

Best regards,
A.mass
Top achievements
Rank 1
 answered on 17 Apr 2009
5 answers
81 views
Really excited about the new version of the RadControls, but I'm a little confused about the default behavior of the new TabStrip control when bound to a SiteMap DataSource.

In the previous version, when attaching the TabStrip (which I use as a navigational element) to the SiteMap, the control automatically displayed the child levels, highlighting the parent elements/path to the current page.

Now, using the new version of the control, when implemented the exact same way, it no longer behaves as previously described.  It shows the top level tabs, but no longer dsplays the child levels nor highlights the selected/active elements in the path.

What about the implementation has changed between the two versions that I might be missing?

Thanks.
Aaron
Top achievements
Rank 1
 answered on 17 Apr 2009
2 answers
137 views
Hi,

i need a radcombobox populated by a class, on itemrequested

 protected void frmIdCliente_ItemsRequested(object o, RadComboBoxItemsRequestedEventArgs e)  
    {  
        string text = e.Text;  
        frmIdCliente.Items.Clear();  
        ANCLI0.PopolaRadCombo(ref frmIdCliente, text, "C", 10);  
    } 
On ANCLI0 class i have:
       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();  
        } 

if my combobox is a simple one (without itemtemplates), it works fine, but if i have templated items like following:
<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> 
when i click on my combo, it don't show me values on its rows.... i think there's a problem with databindings, i try differents databindings (see code above), but it neve shows me "Text" or "Indirizzo" Values...

Someone coul help me??

thanks in advance! 


Gianluca
Top achievements
Rank 1
 answered on 17 Apr 2009
1 answer
78 views
Hello,

I am using the 2008 Q3 DLL Version (2008.03.1105.20) of the RadEditor and I when I am loading the Document or Image or Flash or Template manager with IE8, the windows is loading but the treeview is empty and all the buttons are disabled.
Everything is working good with IE7, IE6, FF3 and FF2.

Can you help me ?

Thanks a lot.
Rumen
Telerik team
 answered on 17 Apr 2009
1 answer
104 views

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

Kamen Bundev
Telerik team
 answered on 17 Apr 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
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
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?