Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
86 views
Hi
i am using grid bound columns and followed this procedure to retrive the values
string strID = string.Empty;
       string UnderLicenseeID = string.Empty;
       string StrType = string.Empty;
       string msg = string.Empty;
       //RadTextBox Users = ((RadTextBox)e.Item.FindControl("txtUsers")).Text;
       ViewState["bound"] = "1";
       if(e.Item is GridDataItem)
       {
           GridDataItem Item = e.Item as GridDataItem;
           if(ViewState["bound"].ToString() == "1")
           {
               foreach (GridDataItem item in RadGrid1.Items)
               {
                   if(item["Users"].Text != null)
                   {
                       strID = item["ClientID"].Text;
                       UnderLicenseeID = item["UnderLicense"].Text;
                       StrType = item["Type"].Text;
                       msg = item["Name"].Text;
                       RadGrid2.Visible = false;
                   }
               }
           }
       }
but what happens is that when i edit and enter a value the item["Users"].text value is &nbsp why i am not getting the value what i have enterd to update?
pl help
Shinu
Top achievements
Rank 2
 answered on 11 Feb 2011
1 answer
66 views
We have successfully wired a RadDatePicker to work in the Filterbar (as a filter) by using the OnDateSelected client event but we don't get it to work when the user types in a date by hand, how should this be done? The normal filterbutton isn't displayed for this type of input it seems, and AutoPostBackOnFilter doesnt seem to work. Any ideas?
Marin
Telerik team
 answered on 11 Feb 2011
1 answer
85 views
Hi,

I want to use only RadSchedulerRecurrenceEditor control in the Sharepoint and want to copy recurrence rule into the RecurrenceData field of a sharepoint's calendar list item.

Where as in codebehind, I am unable to get that control. Let me know, If I miss anything. I am using  2010.1.309.35 version Telerik assembly.  

Thanks, mulagundla
Mallikharjun Mulagundla
Top achievements
Rank 1
 answered on 11 Feb 2011
1 answer
155 views
I have added hyperlink in item template of radgrid . But it is not  appearing as a link. Please solve this issue. Attached the screen shot.

<asp:HyperLink runat="server" ID="hlkRunLM" Text="RunLM" Font-Size="Small">
                                                                   </asp:HyperLink>
Princy
Top achievements
Rank 2
 answered on 11 Feb 2011
1 answer
65 views
How do i add the normal filter icon with its drop down filters list (-greater then, euqal to, contains, not contains etc...) to a custom filter i implemented?
Maria Ilieva
Telerik team
 answered on 11 Feb 2011
1 answer
199 views
hi
what is the alternative for this infargistics line in telerik version,pl help me with this
Ultrawebgrid2.Rows[Ultrawebgrid2.DisplayLayout.ActiveRow.BandIndex].Cells[7]
Princy
Top achievements
Rank 2
 answered on 11 Feb 2011
1 answer
93 views
Hi There, 

I have a treeview that has around 1100 nodes, I've added a type ahead search for the treeview using onClientKeyPressingHandler on a textbox. I loop through all the nodes of the treeview returned by the get_allNodes() method and look for match by getting the node text using get_text(). This is working well in IE, but in Chrome, the get_allNodes is returning some empty nodes which hence are not being returned as matches, any suggestions/ideas on what I could be doing wrong? I'm including my javascript code i'm using to search. 

function FindAppendages(treeview, textSearch) {
 
    var radtree = $find(treeview);
 
    var nodes = radtree.get_allNodes();
 
    var subsetArray = new Array();
 
    for (var i = 0; i < nodes.length; i++) {
 
        var oNode = nodes[i];
 
        if (oNode.get_text().toLowerCase().match(textSearch.value.toLowerCase()) != null) {
 
            oNode.set_visible(true);
 
            var parent = oNode.get_parent();
 
            if (parent != null) {
 
                parent.set_visible(true);
 
                if (parent._text != undefined) {
 
                    subsetArray.push(parent.get_text());parent.set_expanded(true);
 
                }
 
            }
 
            parent = parent.get_parent();
 
            if (parent != null) {
 
                parent.set_visible(true);
 
 
 
                if (parent._text != undefined) {
 
                    subsetArray.push(parent.get_text());parent.set_expanded(true);
 
                }
 
            }
 
            parent = parent.get_parent();
 
            if (parent != null) {
 
                parent.set_visible(true);
 
 
 
                if (parent._text != undefined) {
 
                    subsetArray.push(parent.get_text());parent.set_expanded(true);
 
                }
 
            }
 
            parent = parent.get_parent();
 
            if (parent != null) {
 
                parent.set_visible(true);
 
 
 
                if (parent._text != undefined) {
 
                    subsetArray.push(parent.get_text());parent.set_expanded(true);
 
                }
 
            }
 
        }
 
        else {
 
            var match = false;
 
            for (var j = 0; j < subsetArray.length; j++) {
 
                if (oNode.get_text() == subsetArray[j])
 
                    match = true;
 
            }
 
            if (!match)
 
                oNode.set_visible(false);
 
        }
 
    }
 
}


Thanks,
Phani
Nikolay Tsenkov
Telerik team
 answered on 11 Feb 2011
1 answer
74 views
Hello,

I need to reload my RadGrid (with internal RadComboBox) after Modal Window close.
I try with AjaxUpdatedControl with RadGrid id and RadGrid.DataBind() method in RAM_AjaxManager method, but don't work!

Any ideas?
Thanks
M.
Jayesh Goyani
Top achievements
Rank 2
 answered on 11 Feb 2011
1 answer
85 views
Hello,
I am trying to use Radtooltip in ListView Controll but and set the pagesize=4. When the site is first time rendered, it shows correct result as well as tooltip according to product in listview (ListviewToolTip-Attached picutre); as soon as you hit Second page from DataPager control, it display next four items in line but does't change the tooltip. Tooltip yet refer to the products on first page it bounded to very first time of page execution.

Question : On clicking next page through Datapager, Why not Tooltip again bound itself with existing ( On Screen ) products (ListviewToolTip2-Attached Picture).

I have attached picture that shows first time execution. It works fine for first page but does't bound correct products for the second page.

Help Plz.

Adnan
 
Svetlina Anati
Telerik team
 answered on 11 Feb 2011
1 answer
95 views

hi
is there any alternative for this line

UltraWebGrid1.Rows[i].Cells[7].DataChanged

Prangadj
Top achievements
Rank 1
 answered on 11 Feb 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?