Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
111 views
Hello i am using grid's export Functionality  want to export data with freeze fixed column how can i fix this

Freeze Panes 


Daniel
Telerik team
 answered on 26 Apr 2010
1 answer
58 views
The attached image was taking from the Telerik demo site. This is happening with other styles not only offce2007. How can I fix it?

Thanks,
Italo
Italo
Top achievements
Rank 1
 answered on 26 Apr 2010
1 answer
122 views
Hi,

I am creating a combobox in codebehind dynamically with checkbox template. I am inserting "Select" as a selected item. When i am clicking the CheckBox of the item I called the CheckboxOnclick event. But When i am clicking the Item text the "Select" text which i had as selected item changes to the item text which i clicked. Actually that should not happen. The select text should be the same. How to over come this problem and is there any way  to prevent ItemClick event dynamically. I have given EmptyText also dynamically which is not worked. Pls help me out to sort this problem. I tried OnItemRequested it is also not working.

Thanks,
Jeevitha
Veronica
Telerik team
 answered on 26 Apr 2010
0 answers
101 views
I've searched around in the documentation and online for a way to handle upload failures for the RadAsyncUpload control. At the moment the control merely displays an exclamation mark next to the control upon failure. I would like to provide the user with more detail regarding the nature of the failure. Client-side feedback would be preferable. Is this at all possible?
Andy H
Top achievements
Rank 1
 asked on 26 Apr 2010
1 answer
80 views
My AJAX enabled grid displays header text and item data which are not aligned.  If I resize the columns even by 1 pixel, the alignment is reset and displays correctly.  Any ideas of why this is happening?

Thanks!
Dimo
Telerik team
 answered on 26 Apr 2010
1 answer
199 views
We have a number of RADComboBox controls that have a large number of items in them.  So many that in some cases the drop down will drop up.  This usually results in the list going out of the viewable area of the browser (IE7).  Within these lists we allow the user to filter what they want to see on text that contains what they type ('Filter="Contains"').  When they've typed in a couple of characters the drop up list filters, but the matching values are all the way at the top of the drop up area and out of the viewable area of the browser.

Is there a way to have the dropdown portion auto resize on when the filter occurs?  Or possibly have the matching selection be vertically aligned to the bottom so that when the drop up occurs they show just above the control on the page.  For now the user just see a white area that's blank unless they can scroll up without having the drop up area go away (w/ mousewheel).

Any help would be greatly appreciated.
Kalina
Telerik team
 answered on 26 Apr 2010
1 answer
115 views

Sorry but I changed the content of this post, so please ignore the title. I can't modify it.


I use a DataTable for an input data to draw a line chart.
And there are some empty values.
I successed to draw with empty values, but the lines that go through empty values are shown as dotted lines.

I just want to show solid connected line between non-empty values.


For example,

Y = { 10, 12, empty, 15, empty 16, 20, empty }


I just want to show a solid line that connects through 10 - 12 --- 15 --- 16 -20.

How can I change the line type to solid when the source data has some empty values?


I have tried,

series.Appearance.EmptyValue.Line.Color = Color.Transparent;
or
series.Appearance.EmptyValue.Line.PenStyle = System.Drawing.Drawing2D.DashStyle.Solid;


But both of them shows no line between non-empty values.                   

Thank you.

Alex.
Vladimir Milev
Telerik team
 answered on 26 Apr 2010
1 answer
104 views
hi

how cn i diseabled radtabstrip and datagrid when my ajaxmanager onrequeststart fired?

     function OnRequestStart(sender, args)
     {
             var Bck = document.getElementById("<%= btnBck.ClientID %>");
         var Frwd = document.getElementById("<%= btnFrwd.ClientID %>");
         var tab = document.getElementById("<%= rtsInsertPratica.ClientID %>");
         var p = document.getElementById("<%= grdProd.ClientID %>");
         var i = document.getElementById("<%= grdInsoluti.ClientID %>");
                
         Bck.disabled = true;
         Frwd.disabled = true;        
         tab.disabled = true;
         p.disabled = true;
         i.disabled = true;       
     }
       

the code above doesnt work on firefox and if i click the tabstrip my routine(which is running) goes in error..

thanks

Iana Tsolova
Telerik team
 answered on 26 Apr 2010
1 answer
95 views
I'm getting the following error on SOME rows. I have a repeater and when I click on a link a RadWindow opens with data from the querystring. The page in the RadWindow has a Radgrid. On some rows in the repeater (not all) I get the following error from the RadWindow page from the RadGrid - Both DataSource and DataSourceID are defined on 'rgResults'.  Remove one definition.

I only have one datasource and its in code behind.

This is my grid Markup..
     <telerik:RadGrid   
        ID="rgResults"   
        runat="server"   
        AllowSorting="false" 
        AutoGenerateColumns="False"   
        GridLines="None" EnableEmbeddedSkins="false" Skin="MAU">  
              
        <HeaderContextMenu EnableAutoScroll="True" EnableEmbeddedSkins="False"></HeaderContextMenu> 
       
        <MasterTableView DataKeyNames="PatientID">  
                    <Columns> 
                        REMOVED  
                    </Columns> 
        </MasterTableView> 
 
    </telerik:RadGrid> 

And this is how I bind the data:-
            Dim objWebService As New Search.QueryWebService  
            Dim XMLNodeObject As XmlNode = objWebService.Search(p1, p2, p3, p4)  
 
            Dim xmlDoc As New XmlDocument()  
            xmlDoc.AppendChild(xmlDoc.ImportNode(XMLNodeObject, True))  
 
            Dim ds As New DataSet  
            ds.ReadXml(New StringReader(xmlDoc.OuterXml))  
 
            rgResults.DataSource = ds 
            rgResults.DataBind() 

What is going on?

ANdy
Andy Green
Top achievements
Rank 1
 answered on 26 Apr 2010
1 answer
155 views
Hi,

Im trying to make a radgrid work with edit mode in a webpart for MOSS 2007.
All the events fire as they should BUT I cant get the edited values in the event.

The controls property on the edit cells has a count = 0.
It works fine when I use the control in a normal aspx page.

The code is:

 

protected void radGrid_ItemCommand(object source, GridCommandEventArgs e)

 

{

 

switch (e.CommandName)

 

{

 

 

case

 

"Update":

 

{

 

GridEditFormItem gridInsert = (GridEditFormItem)e.Item;

 

 

string pNavn = ((TextBox)(gridInsert["Navn"].Controls[0])).Text;

 

...


The .Controls[0] throw an "index out of range" because the cell holds no controls. The gridInsert["Navn"] does exist.

Please help.

 

Sebastian
Telerik team
 answered on 26 Apr 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?