Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
227 views
Hi All

When I scroll down some page

I wanna Fix the Header line,

and only Item lines scrolling down and up


Headline #1 Headline #2 Headline #3
#3    
#4    
#5    
#6    
Like EXCEL Windows - Fix the line

Can I do this in grid?
Pavlina
Telerik team
 answered on 12 Apr 2010
1 answer
75 views
Hi I need an urgent fix for this issue. We are using pngs for the left and right arrows on the scroller. In IE7 and IE8 when we hover over the arrows the png transparency breaks causing a jagged black outline around the arrow!

[In addition the disabled state of the button's filter is set to 50% causing a gray jagged line, but I have solved this by setting it to 0% so the disabled button state is invisible. I cannot however use this solution for the hover issue above.]

Manually setting the filter alpha opacity to 100 on a png button (any state) creates the jagged black outline.

How can I completely disable the code that is apparently setting the opacity of the .rrButton:Hover state? Why is it there?
Pero
Telerik team
 answered on 12 Apr 2010
3 answers
42 views
Hi :

We have license for ASP.NET AJAX Control 2009 Q2.
Can we Use this version of ASP.NET AJAX Control on Moss 2010 web part?

Does this version have any issue on Moss 2010 webpart ?


Regards,

Lu
Sebastian
Telerik team
 answered on 12 Apr 2010
10 answers
192 views
After updating to 2009_1_402 I have a radslidingpane that only loads the content on every other opening. When it dos'nt add the content it just has the title bar that expands out. 

If you resize it once the pane is opened, either with or without the content loaded, it does the same thing adding and removing the content on every other resize.

Any Ideas?

Thanks,
Dave
Svetlina Anati
Telerik team
 answered on 12 Apr 2010
3 answers
158 views
I had a Ajax Q1 2010 Tree working perfectly then decided to wrap it up in a RadPanelBar.  I'm loading it server side and used " Dim treeview As RadTreeView = DirectCast(RadPanelBar1.FindItemByValue("templateHolder").FindControl("RadTreeView1"), RadTreeView)" to gain access to the control.

But...Node Click and Expand events are not firing.

Thanks,
Yana
Telerik team
 answered on 12 Apr 2010
0 answers
164 views
Hi,

I have a RadToolBarSplitButton with several button items dynamically created on server-side. Selecting an item triggers a RadWindow to pop-up showing item-designated content. Though, the SplitButton should always remain with the default button selected. I use the 'OnClientButtonClicking' event with 'args.set_cancel(true)' to achieve it and it works well.

Recently I had to convert one ASP.Net Web Application into a Website and realized that the SplitButton does not return to its default item after item selection. The js function defined for 'OnClientButtonClicking' event works fine (same as in Web Application), but it seems that 'args.set_cancel(true)' has no effect. Is that an issue or am I missing something?

Also, is there a client-side script to set a specific SplitButton item as selected (other than using the click() event)?

thanks,
eyal


UPDATE: The issue was most likely caused by a different Telerik dll version. You can delete this question.
eyal
Top achievements
Rank 1
 asked on 12 Apr 2010
2 answers
153 views
I add by code my checkboxlist in ItemDataBound event
protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e)  
{  
 CheckBoxList chkLst = null;

// add checkboxlist only in edit item
 if ((e.Item is GridEditableItem) && (e.Item.IsInEditMode))  
 {  
      chkLst = new CheckBoxList();  
      chkLst.ID = "MyCheckLst";  
      lst = new ListItem("Item1""1");  
      chkLst.Items.Add(lst);  
      lst = new ListItem("Item2""2");  
      chkLst.Items.Add(lst);  
      // Add checkboxlist to CheckBox (every checkbox have a checkboxlist)

      (GridEditableItem)e.Item["MyCheck"

].Controls.Add(chkLst);

 

 }  
 
 
In RadGrid1_ItemUpdated event i try to retrive the checkboxlist
protected void RadGrid1_ItemUpdated(object source,Telerik.Web.UI.GridUpdatedEventArgs e)  
{  
    CheckBoxList cbl = (CheckBoxList)e.Item["MyCheckLst"].Controls[0];  
This is the error: 
{"Cannot find a cell bound to column name 'MyCheckLst'"} System.Exception {Telerik.Web.UI.GridException}

If I edit the row I can see the checkboxlist, but if I show page HTML I have not any checkboxlist!!!
Please, HELP!!!
Marco Rosignoli
Top achievements
Rank 1
 answered on 12 Apr 2010
3 answers
227 views
I Have a RadTreeView inside a RadComboBox, and i have inside the aspx page the RadScriptManager, i can bind the data to the tree, but when it gonna be draw in the page i get the error:
"Script control 'RadTreeView1' is not a registered script control, Script controls must be registered using RegisterScriptControl() before calling RegisterScriptDescriptors(). Parameter name: scriptControl"
If i set the property RegisterWithScriptManager of the tree to false, the tree draws in the page with no problems, but with no functionalities.
Its there a way to manually register the RadTreeView scripts into the RadScriptManager so i can get the tree functionality back?

Thanks
Dimitar Milushev
Telerik team
 answered on 12 Apr 2010
1 answer
127 views
Hi ,

I have added a  image column in Rad Grid.
aspx code is below.

<telerik:GridImageColumn DataType="System.String" dataimageurlfields="PHOTO_PATH" display="true"
                                                          
                     AlternateText="Customer image" DataAlternateTextField="ContactName" ImageAlign="Middle"  
                      ImageHeight="110px" ImageWidth="90px"
                      HeaderText="Image Column" />

Photo_path field  has value" \\192.168.0.08\photos\images\MUM4\219937W.JPG" . Image is not diplaying.

Please give me advice.

Thanks.



Sebastian
Telerik team
 answered on 12 Apr 2010
1 answer
193 views
Hello,
I'm writting this post because i have an issue with the automatic focus on the updated control after Ajax Request. I apologize in advance for my awful english which isn't my mother tongue...

Here is my scenario :

- I have  a WebControl on my master page. This webcontrol makes a request to an Exchange Web Service returning the number of unred messages for the current user.
- The request to the Web Service is done asynchronously by Ajax after the page is loaded. As the request can take a few second to success, i don't want this request to happen in the code behind loading event.
- Globally everything works fine, but the problem is the automatic focus on the updated control after the ajax request. If the user scrolls down the page in order to read the text (for example) the browser automatically scrolls to the top (where my WebControl is) in order to focus on the updated control (which is a simple label).
- The web request is currently triggerred by an Ajax Timer (in order to refresh the number of unread mails each 5 minutes). I have also tried to fire the ajax request in the javascript page load. The result is always the same...
- I'm using a RadAjaxManager (i tried with a RadAjaxPanel : the result is the same and the Timer has a weird behavior...) and i'm in a MOSS 2007 environment.
- I have red some posts about focusing controls after a request, but in my scenario there are not necesseraly any controls selected.

So here is my question : Is there any way to disable the automatic focus on the updated control? My goal is to update this control in the background without any focus on it after the request.

Thanks in advance,
Best regards
Dallet Olivier
Iana Tsolova
Telerik team
 answered on 12 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?