Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
130 views
With the solution in place for the previous issue (see below), we are now experiencing the failure of the RadGrid "cancel" button to hit the server side.  I can add an OnClientClick attribute to the asp:Button control to fire a JavaScript alert, but the server side Grid_ItemCommand (and even Page_Load) handler breakpoints are not being hit.  Any thoughts would be greatly appreciated.  Thank you.  Version 2010.3.1109.35

Previous Issue: http://www.telerik.com/community/forums/aspnet-ajax/grid/grid-insert-edit-fails-validation-cancel-tab-change.aspx
THOMAS
Top achievements
Rank 1
 answered on 09 Jun 2011
3 answers
138 views
Hi

Is there a way to get the MIME, Content Type and file name from the grid binary image when uploading a file to a database?
Grant Millgate
Top achievements
Rank 1
 answered on 09 Jun 2011
1 answer
72 views
so i have my grid change the height on pane collpase using the function applyHeight below on the onclientcollapsing on radpane
function applyHeight(sender, args) {
                    var grid;
                    // set height to the whole RadGrid control
                    grid = $find("<%= grid_Historical_Commodity.ClientID %>");
                    grid.get_element().style.height ="580px";
                    grid.repaint();
                }

however when i click page 2 on the grid, the height of the grid went back to original height. so how do i keep the height of the grid the same after i collapse? thank you.
Gimmik
Top achievements
Rank 1
 answered on 09 Jun 2011
1 answer
127 views
what i am trying to do is create a multi tiered radgrid that looks similart o this concept

the 1st line of grid would hold Personnel information, then I want to make 3 sub grids of this that are dental, medical and admin.
Then under these it would hold the records for those categories, is this type of grid possible

Personel information   1level
    Dental  Count of records and ID   2nd level
        All Dental records asssociated with personnel   3rd level
    Medical Count of records and Id   2nd level
        all medical records associated with personnel   3rd level
    Admin Count of records and ID   2nd level
         all admin records   3rd level
Fortune
Top achievements
Rank 1
 answered on 09 Jun 2011
1 answer
98 views
Hi,

How to set the height of the grid row so that each row can show 2+ lines? No need to be determined the height dynamically.


Thanks,
Elton
Gimmik
Top achievements
Rank 1
 answered on 09 Jun 2011
5 answers
361 views
Hi

I have a ComboBox filter in a grid that has an 'All' state, which is the default.

I have written some client side code to invoke a filter operation on my grid, and it filters
just fine if I select.

However after the postback occurs my Combo has the 'All' item selected.

So I can never trigger a client side event to revert my grid to unfiltered.

Helpppppppp
Gimmik
Top achievements
Rank 1
 answered on 09 Jun 2011
1 answer
107 views
I have a project were we have the RadAjaxManager on the MasterPage. The MasterPage declares functions that are attached to the RadAjaxManager's OnRequestStart and OnResponseEnd client events.

No problem so far.

On an individual page in the project I find myself needing to assign a function to the OnResponseEnd event. If I do this, I'm going to lose the regular handler for that page, aren't I?

Is there a properly defined way of chaining these handlers?

-- 
Stuart
Fortune
Top achievements
Rank 1
 answered on 09 Jun 2011
1 answer
52 views
Hi guy,

I have a little problem. I'm using a hierarchy grid. The "parent" grid show the roles in my table aspnet_Roles. The nested grid show the user related to the role. For populating my grid, I'm using a dataSet. My problem is that I don't know how to delete the relation between a user and a role using a context menu. I tried the seconde example on this page, but I still have some problems. In fact, this is how I do :

string[] args = Request.Form["radGridClickedRowIndex"].Split('_');
int indice = Convert.ToInt32(args[args.Length - 1]);
string UId = Request.Form["radGridClickedTableId"];
 
GridTableView tableView;
 
tableView = this.Page.FindControl(UId) as GridTableView;
string userName = ((tableView as GridTableView).Items[indice] as GridDataItem)["UserName"].Text;
string roleName = ((tableView as GridTableView).Items[indice] as GridDataItem)["RoleName"].Text;
 
Roles.RemoveUserFromRole(userName, roleName);
 
tableView.Rebind();


When I tried it, this message appears :  Cannot find a cell bound to column name 'RoleName'

The only way I find to correct this problem is to add the column RoleName to the nested grid, but I don't really like showing the name of the role for each user. So, is it possible to find to which row the nested grid is related and access his data (in my case, RoleName). 

Thank you,
David Lefaivre-B.
David
Top achievements
Rank 1
 answered on 09 Jun 2011
1 answer
70 views
Application Environment: .net Framework 4.0, C#, ASP.net, Telerik RadControls for ASP.NET Ajax version 2010.3.1317.40.

We have been using the Treeview control in our application for a while. We load a lot of nodes in the Tree and in order to improve the performance we decided to use the PageAdapter to maintain the viewstate on the server instead of the client. It significantly improved the performance of the Tree but sometimes the Tree does not load on postbacks and refresh. We have the Tree in the leftpane of a frame set and on postbacks and refresh the the left pane stays blank. On refresh it loads again fine. It does not happen consistently and there is no set sequence of events to replicate the behavior. I was wondering if anyone has experienced this behavior before. Please let us know of any solutions, suggestions or ideas.

Thanks
Som
Nikolay Tsenkov
Telerik team
 answered on 09 Jun 2011
1 answer
240 views
I got 3 radiobuttons who all are linked to execute the same OnCheckedChanged command when they are selected, here is my code:
<asp:RadioButton ID="RadioButtonWork" runat="server" Checked="true" GroupName="Invoice" AutoPostBack="true" OnCheckedChanged="RadioButtonsInvoice_OnCheckedChange" />
<asp:RadioButton ID="RadioButtonInvoice" runat="server" Checked="false" GroupName="Invoice" AutoPostBack="true" OnCheckedChanged="RadioButtonsInvoice_OnCheckedChange" />
<asp:RadioButton ID="RadioButtonHome" runat="server" Checked="false" GroupName="Invoice" AutoPostBack="true" OnCheckedChanged="RadioButtonsInvoice_OnCheckedChange" />

They do work as they should when i have put my RadAjaxManager to not enable Ajax.
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" EnableAJAX="false">...</telerik:RadAjaxManager>

Rad Ajax settings
<telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="RadioButtonWork">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="PlaceHolderInvoiceAddress" />
                <telerik:AjaxUpdatedControl ControlID="PlaceHolderHomeAddress" />
            </UpdatedControls>
        </telerik:AjaxSetting>
        <telerik:AjaxSetting AjaxControlID="RadioButtonInvoice">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="PlaceHolderInvoiceAddress" />
                <telerik:AjaxUpdatedControl ControlID="PlaceHolderHomeAddress" />
            </UpdatedControls>
        </telerik:AjaxSetting>
        <telerik:AjaxSetting AjaxControlID="RadioButtonHome">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="PlaceHolderInvoiceAddress" />
                <telerik:AjaxUpdatedControl ControlID="PlaceHolderHomeAddress" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManagerProxy>

But when i enable ajax, the default radiobutton (checked="true") never fire the event. Why is this ?
We are using Telerik.Web.UI version 2011.1.315.40.
Also worth mentioning is that this is inside a usercontrol, thats why the proxy control is used and not a managager for ajax.
Fortune
Top achievements
Rank 1
 answered on 09 Jun 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?