Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
125 views
Hello:
I am using the batch edit demo here as my starting point https://demos.telerik.com/aspnet-ajax/grid/examples/data-editing/batch-editing/defaultcs.aspx
I noticed it uses allowautomaticinserts/updates/deletes

Before purchasing radgrid, I was used to writing my stored procedures to accept only my required parameters, not every single one.
is there a way to get batch editing to work with code behind, calling a command (updateAll) and passing my parameters manually?
Angel Petrov
Telerik team
 answered on 16 Apr 2014
1 answer
72 views
Hi there,

i am using stacked bar charts for my project. 

the issue i am facing is i have my each bar displaying number of males and females in that particular group.

now i want that bar clickable which will take me to members of the group i clicked bar for. and for that i need my x axis value so that i can pass it in where condition for my subquery. but i am unable to find my x axis value. can you please guide me through on how to accomplish the task.
Danail Vasilev
Telerik team
 answered on 16 Apr 2014
2 answers
148 views
Is there a way for me to drag and nodes from the file explorer to a radgrid?  I would then handle the event and add a new item to the radgrid based on the current dropped object.
Vessy
Telerik team
 answered on 16 Apr 2014
1 answer
192 views
Hello Telerik Team,

We have Event Management kind of asp.net web application and we have used the Telerik toolkit in our application. The current Telerik version currently we
are using is 2012.2.912.35. We have used RadComboBox in our application extensively and most of the places we have set MarkFirstMatch property of RadComboBox to TRUE.

Previously when we access our application in IE9 browser then RadcomboxBox filtering feature was working very smoothly but later
on we started using IE 10 and IE 11 browsers then we noticed that the text at the top of RadComboBox diappears.

In following screenshot you can see the country RadComboBox. I am using IE 10 or IE11 browser and suppose I search for “Boise”.
Now when I started typing the alphabets in RadComboBox, the text at the top of DDL disappear and an X appears toward the center of the DDL.
Please refer following screenshot:
NOTE: The same problem is appearing for all of the RadComboboxes which are present in all of the pages of our application.

[Refer ss1.png]

In above screenshot, we can see that RadComboBox filters the results correctly but the text at top of DDL disappears and X appears at center
which doesn’t looks well.

This is the code of our web page where the country RadComboBox is located.  

<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
</head>
<body>
    <form id="form1" runat="server">
        <telerik:RadScriptManager runat="server" ID="RadScriptManager1" EnableScriptCombine="false">
            <Scripts>
            </Scripts>
        </telerik:RadScriptManager>
        <br />
        <br />
        <telerik:RadComboBox ID="cbCities" runat="server" Width="200px" MarkFirstMatch="true" ExpandDirection="Down">
            <Items>
                <telerik:RadComboBoxItem Text="Atlanta" Value="1" />
                <telerik:RadComboBoxItem Text="Austin" Value="2" />
                <telerik:RadComboBoxItem Text="Baltimore" Value="3" />
                <telerik:RadComboBoxItem Text="Boise" Value="4" />
                <telerik:RadComboBoxItem Text="Boston" Value="5" />
            </Items>
        </telerik:RadComboBox>
    </form>   
</body>
</html>
 

During investigation we found that when the “Display intranet sites in Compatibility View” option of IE11 is unchecked then dropdown works as
desired and if we checked this option for IE11 then again the top of the text of DDL got disappears during typing a text.

[Refer ss2.png]

We cannot unchecked the
“Display intranet sites in Compatibility View” of IE because when we unchecked this option in IE browser then complete design of our web pages
got messed up.

I have also tried adding the script given in below link but this didn’t resolved the issue at our end.
http://www.telerik.com/forums/patch-ms-update-kb2586448-breaks-radcombobox-markfirstmatch-in-versions-older-than-2009-3-1314-inclusive


Please suggest any generic workaround so that the filtering feature of all RadComboBox present in our application works as desired in IE11 and IE 10 browsers.

Thanks,
Riz

Nencho
Telerik team
 answered on 16 Apr 2014
4 answers
67 views

Hi,

I set the dropdownlist width of Page size in RadDataPage which is 46.  It gains wider on mobile platform web browser.

Please check the following www.foundsuppliers.com, on home page, select "Technology" and then search. 

Regards,

Duy
Viktor Tachev
Telerik team
 answered on 16 Apr 2014
1 answer
117 views
i am using hierarchy rad grid. In radgrid_itemcreated event i am checking if the griddata item is in the parent grid or in the child grid. How to i get the row index of parent grid in a child grid ?

I have hierarchy rad grid and checkboxes associated with each grid data row. if i select the top grid all child grid rows should be selected. if i select middle grid then the last grid rows should be selected.if i deselect any row in the child grid the parent rows should also be deselected.

i have my code where if i select top grid all child rows are selected. how can i achieve the same with the middle grid in the hierarchy.



function CheckBoxPackage_OnClick(obj, index) {
var grid = $find("<%= RadGrid1.ClientID%>");
var MasterTable = grid.get_masterTableView();
var row = MasterTable.get_dataItems()[index];
var detailView1 = row.get_nestedViews()[0];
for (var i = 0; i < detailView1.get_dataItems().length; i++) {
var cbOrder = detailView1.get_dataItems()[i].findElement("CheckBoxOrder");
cbOrder.checked = obj.checked;
for (var j = 0; j < detailView1.get_dataItems()[i].get_nestedViews()[0].get_dataItems().length; j++) {
var checkBox3 = detailView1.get_dataItems()[i].get_nestedViews()[0].get_dataItems()[j].findElement("CheckBoxOrderLine");
checkBox3.checked = obj.checked;

}

}
document.getElementById("<%= btnAssignCodes.ClientID%>").disabled = false;
}

 In the above code if top checkbox in the 3 levels of grid is selected all child are selected but if 2nd level grid checkbox is selected then 3rd level grid rows are not selected. please suggest .

thanks



Maria Ilieva
Telerik team
 answered on 16 Apr 2014
2 answers
117 views
What I am trying to do is hide a textbox while my radgrid is in Edit mode, but when its in insert mode I want to show it.  I am using the radgrid_ItemDatabound event to try to mange this in isinEditMode.  but when I do this it hides it on insert or edit mode.  I want to just hide the textbox on Editmode. 

If (TypeOf e.Item Is GridEditableItem AndAlso e.Item.IsInEditMode) Then
            Dim editedItem As GridEditableItem = DirectCast(e.Item, GridEditableItem)
            Dim search As TextBox = CType(editedItem.FindControl("txtSearch"), TextBox)
 
            search.Visible = False
End If




















Kevin
Top achievements
Rank 1
 answered on 16 Apr 2014
1 answer
96 views
Hi
i have a grid and im exporting it to pdf. I wanted to know if pdf export support rtl orientation?
Shinu
Top achievements
Rank 2
 answered on 16 Apr 2014
1 answer
86 views
Hi guys,

At the moment I am using a RadGrid inside an UpdatePanel. However on row select of this grid, I always get a weird text on top of the Grid, but inside the Panel which is something like this :

29592|updatePanel|ctl00_cphMain_ctl00_cphMain_dgTestPanel|


Anyone encountered this issue before?

Thanks,
Bernard
Princy
Top achievements
Rank 2
 answered on 16 Apr 2014
1 answer
49 views
Hi,

How do I get back to ImageButton properties within the ItemCommand event? I need to change the ImageURL once I have done my other database calls.

Regards,

Henry Fourie
Jayesh Goyani
Top achievements
Rank 2
 answered on 16 Apr 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?