Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
77 views
I have partially localized the splitbar tooltips. You will notice in my image attached the tooltip displays in Japanese except for the word "bottom" which is using the {0} variable to replace with bottom, top, left or right which pertains to the pane to collapse/expand.

Can you please tell me how I can gain access to that variable so I may have complete localization of the tooltip?

Dobromir
Telerik team
 answered on 03 Mar 2011
1 answer
170 views
Hi, i'm working on an asp:datagrid with a telerik:RadDataPager.
I have a button (new) to add a new item to the grid.
Assuming that PageSize is 10.
When I add the eleventh item to the grid I'd like to change the current page index of RadDataPager to page 2, but I can't find any property to set the current page.
Can you help me please?
Thanks
Tsvetina
Telerik team
 answered on 03 Mar 2011
1 answer
62 views
Hi People
I enable filter for grid but when grid is in radajaxmanager when click filter menu change position of controls in form
please help to me
Pavlina
Telerik team
 answered on 03 Mar 2011
3 answers
127 views
I have a grid with 9 rows. Now I want to create nested grid for each 9 rows and these nested grid will be different for each row.. How can I achieve this? Can someone help please??
Effat
Top achievements
Rank 1
 answered on 03 Mar 2011
4 answers
105 views
Hi, I am very new to telerik so please take it easy on me if you feel the answers to my questions are obvious.

I'm using a ComboBox and when I select an item from the list of items the text is displayed but not the symbol 

any help would be greatly appreciated 

Dan

            

<telerik:RadComboBox ID="RadComboBoxSymbols" runat="server" AutoPostBack="true" OnClientSelectedIndexChanged="OnSymbolChange"
                        OnSelectedIndexChanged="RadComboBoxSymbols_SelectedIndexChanged" Width="100">
                    </telerik:RadComboBox>
 
 
 
private void BindToSymbolsList(Values.pointReg.PointRegistration pointRegistration)
        {
            RadComboBoxSymbols.Items.Clear();
            foreach (Symbol symbol in pointRegistration.Getallsymbols())
            {
                RadComboBoxItem item = new RadComboBoxItem(symbol.Name,symbol.Id);
                item.ImageUrl = symbol.Path;
                RadComboBoxSymbols.Items.Add(item);   
            }
            RadComboBoxSymbols.SelectedIndex = 0;
        }
dan
Top achievements
Rank 1
 answered on 03 Mar 2011
1 answer
779 views
Im having some trouble understanding why I cant access columns within the PreRender function.  Here is the code.  I am loading the grid at runtime.

Why do I not get inside of either of these loops?  But, the commented code will set the ID columns visibility to false if uncommented.
Private Sub RadGrid_PreRender(ByVal sender As Object, ByVal e As System.EventArgs) Handles RadGrid.PreRender
    For Each column As GridColumn In RadGrid.MasterTableView.Columns
        If column.UniqueName = "ID" Then
            column.Visible = False 'Not column.Visible
        End If
    Next
    For Each column2 As GridColumn In RadGrid.Columns
        If column2.UniqueName = "ID" Then
            column2.Visible = False 'Not column.Visible
        End If
    Next
    'Dim column3 As GridColumn = RadGrid.MasterTableView.GetColumnSafe("ID")
    'If column3 IsNot Nothing Then
    '    column3.Visible = False 'Not column.Visible
    'End If
    RadGrid.MasterTableView.Rebind()
End Sub

Here is the PageLoad just in case.
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    If Not IsPostBack() Then
        Dim bp As BasePage
        bp = CType(Parent.Page, BasePage)
        RadGrid.DataSource = bp.mDs
        bp.ExecuteQuery(" WHERE 1 = 0 ")
    End If
End Sub

Princy
Top achievements
Rank 2
 answered on 03 Mar 2011
3 answers
111 views
I need to do this:
 C #
          var item = RadGrid.MasterTableView.GetInsertItem ();
but in javascript
         ????????
Giancarlo
Top achievements
Rank 1
 answered on 03 Mar 2011
4 answers
421 views

Hi Telerik team,

 

I am Telerik user and I have an requirement as below:

 

 

Right now, Telerik RadListBox doesn’t support Dropped event (it is not fired when dropping an item over another RadListBox/RadListBoxItem). So, how can I sort  AvailableList’s items whenever an item is dropped into it?

 

I have tried to work around by firing two event OnInserted and OnUpdated, but it seems hopelessness (these two events were fired one by one after an item was dropped into AvailableList), and it threw exception like:

 

Line: 6

Error: Sys.WebForms.PageRequestManagerServerErrorException: Insertion index was out of range. Must be non-negative and less than or equal to size.

Parameter name: index

 

It’s urgent, any solution please?

 

Many thanks,

Bo

kate tsai
Top achievements
Rank 1
 answered on 02 Mar 2011
2 answers
130 views
I have a RadTreeView set up so that the lowest level of the tree has a check box. It has many nodes so I have implemented the Page Methods functionality.  I am trying to decrease the level of clicks by using the UncheckAllNodes() method on the tree. On tree load I have a javascript function that will hide the original node and I created a custom RadTreeNodeData class that has an object ShowCheckBox and Checked objects. When I call the UncheckAllNodes, I need it to be on the lowest level, instead what I'm getting is all nodes unchecked (expected), but the check boxes are showing up for the non-lowest level nodes. Is there a function I could call that will re-hide the check boxes, or a function that will un-check nodes that are checked? That way it won't affect the style I've applied to the nodes above?

function TreeViewLoad() {
    var treeView = $find("<%=TreeView.ClientID%>");
    if (treeView != null) {
        var node = treeView.get_nodes().getNode(0); //get the first node
        node.get_checkBoxElement().style.display = "none"; // hide the CheckBox
    }
}

function OnClientNodeDataBoundHandler(sender, e) {
    var node = e.get_node();
    if (e.get_dataItem().ShowCheckBox) {
        node.set_checked(e.get_dataItem().Checked);
    }
    else {
        node.get_checkBoxElement().style.display = "none"; // hide the CheckBox
    }
}
Alex
Top achievements
Rank 2
 answered on 02 Mar 2011
1 answer
124 views
Hi,

I am trying to upload the files using RADUpload control.

I am able to upload all the files but not able to .bmp.

even i mentioned this extention in AllowFileExtention property.

Please help,

Thanks in advance,
Mahendra
Dimitar Terziev
Telerik team
 answered on 02 Mar 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
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?