Telerik Forums
UI for ASP.NET AJAX Forum
8 answers
600 views
Hi,
I am using Telerik rad grid version 2010.1.519 in VS 2010 project.
Is it possible to have select All check box at row level? For example, if select check box at column 1 and row 1, all check boxes should be checked in the row1 like attached the screenshot (2nd row).
Could you please help me?
Thanks
Rhbkv
Top achievements
Rank 1
 answered on 08 Aug 2012
2 answers
322 views
With the old Telerik grid I could call row.Index client-side and get the index of the row within the page.

I can't seem to find anything equivalent with the new grid - am I missing something obvious?

Thanks,

Stephen
mathieu cupryk
Top achievements
Rank 1
 answered on 08 Aug 2012
1 answer
79 views
I need disable the drag and drop for some columns such as : Update, Delete and select.
It is possible?

thanks
Jayesh Goyani
Top achievements
Rank 2
 answered on 08 Aug 2012
4 answers
141 views
It seems there is a bug when RadDock ClientIdMode is set to Static, which prevents RadDock from closing when clicking "x".
Marin Bratanov
Telerik team
 answered on 08 Aug 2012
2 answers
68 views
This is an intermittent error that I am experiencing. This occurs after the file has been successfully uploaded and processed by my custom handler. However it does not happen on every upload, and it will happen/not happen even when uploading the same file multiple times. All the lights are green and the files exists on the server. We use version 2011.1.519.35. This error occurs in IE. The control sits inside of a jQuery dialog but not inside of an update panel or anything.

Here is the markup around the control:
<EDIT: Code removed>
and here is the code for my custom handler:
<EDIT: Code removed>
Any ideas what is causing this issue?
Plamen
Telerik team
 answered on 08 Aug 2012
0 answers
100 views
        protected void btnExportToExcel_Click(object sender, EventArgs e)
        {
            radgridSentiment.ExportSettings.IgnorePaging = true;
            radgridSentiment.MasterTableView.ExportToCSV();
            radgridSentiment.MasterTableView.GetColumn("columnTweetID").Visible = true;
            radgridSentiment.MasterTableView.GetColumn("columnBusinessAreas").Visible = true;
            radgridSentiment.MasterTableView.GetColumn("columnLocation").Visible = true;
            radgridSentiment.MasterTableView.GetColumn("columnAuthorLocationContinentCode").Visible = true;
            radgridSentiment.MasterTableView.GetColumn("columnAuthorLocationStateCode").Visible = true;
            radgridSentiment.MasterTableView.GetColumn("columnAuthorLocationRegionCode").Visible = true;
            radgridSentiment.MasterTableView.GetColumn("columnAuthorLocationCountryCode").Visible = true;
            radgridSentiment.MasterTableView.GetColumn("columnDataSourceIndustry").Visible = true;
            radgridSentiment.MasterTableView.GetColumn("columnDataSourceCoverageArea").Visible = true;
            radgridSentiment.MasterTableView.GetColumn("columnDataSourceBusinessArea").Visible = true;
            radgridSentiment.MasterTableView.GetColumn("columnLifeStyle").Visible = true;
            radgridSentiment.MasterTableView.GetColumn("DataURL").Visible = true;
            radgridSentiment.MasterTableView.GetColumn("columnUserID").Visible = true;
            radgridSentiment.MasterTableView.GetColumn("columnSelect").Visible = false;
            radgridSentiment.MasterTableView.GetColumn("columnAction").Visible = false;
            radgridSentiment.MasterTableView.GetColumn("columnTweetDataExport").Visible = true;
            radgridSentiment.MasterTableView.GetColumn("columnTweetData").Visible = false;
}
Hello,

I have a button on click of which i export the data of a grid in csv format, and i have some columns having integer values in 15+ digits, the problem is that when the data of grid is exported i find the value in exponent form ie. if the value is 232837539508146000 than i am getting it as 2.32837E+17, i want the value as it is.

its urgent!

Thanks in advance!

With Regards,
Peeyush Pandey
Peeyush
Top achievements
Rank 1
 asked on 08 Aug 2012
3 answers
297 views
What i want to accomplish is a simple reorder rows within the radgrid with drag and drop, i was checking this example Grid / Items Drag-and-drop but that is between 2 RadGrid, works fine if you try to reorder the rows in the same RadGrid, but still doing a lot of stuff in the server side with list. There is any way to do it just with the current griditems without having a list in the backend? 
Pavlina
Telerik team
 answered on 08 Aug 2012
8 answers
557 views
Hi

I have several radcombos with EnableCheckAllItemsCheckBox="true" and all dropdowns are "all checked" by default, but once you uncheck items on the first radcombo, datas on other radcombos will be changed as well during onradcombobox closed/onblur/onlost focus/etc. How can I call server side event during dropdownclosed with checked items will be the filter for populating other dropdowns. Please note that server side event will fire only when there are changes made with the first dropdown so that it would not make same query to the database with just same values in return (is this possible?)  

Thanks in advance,
RJ
RJ
Top achievements
Rank 1
 answered on 08 Aug 2012
2 answers
80 views
Hi,


I have just started using the Telerik controls and have no doubt a basic problem. TimePicker works wonderfully in an .aspx window but I cannot get the popup times to work in a modal radWindow that is called by the main page.

Here is the code....

     <telerik:RadTimePicker ID="RadTimePicker1" runat="server" Skin="Black">
    </telerik:RadTimePicker>

See the attached screen shot, selecting the 'clock' icon does not reveal the times.

Any clues, i sure it should work.

Harvey
Harvo
Top achievements
Rank 1
 answered on 08 Aug 2012
3 answers
150 views
Please assist:

Overview:
I retrieve data from a database. This data is grouped into sets and each set is displayed in its own RadGrid that I display dynamically. Because the amount of data groups that are returned are not always the same, the radgrids needs to be dynamically created and displayed.

Problem:
The Radgrids display correctly, however, paging does not work. When the page loads for the first time the all the radgrids displays correctly, with the correct amounts of rows, page numbers etc. However, when I click on any of the paging links it clears the page and does NOT fire the PageChanged or PageChanging event.


My Code:
                    Telerik.Web.UI.RadGrid grdDynamicIAData = new Telerik.Web.UI.RadGrid();
                    grdDynamicIAData.ID = "grv" + ia.Short_Name;
                    grdDynamicIAData.EnableViewState = true;
                    grdDynamicIAData.PageSize = 5;
                    grdDynamicIAData.AutoGenerateColumns = true;
                    grdDynamicIAData.AllowSorting = true;
                    grdDynamicIAData.AllowPaging = true;
                    grdDynamicIAData.PageIndexChanged += new GridPageChangedEventHandler(grdDynamicIAData_PageIndexChanged);

                    grdDynamicIAData.DataSource = dtDynamicIAData;
                    grdDynamicIAData.DataMember = dtDynamicIAData.TableName;
                    grdDynamicIAData.DataBind();


    void grdDynamicIAData_PageIndexChanged(object sender, Telerik.Web.UI.GridPageChangedEventArgs e)
    {
        Telerik.Web.UI.RadGrid grdDynamicIAData = (Telerik.Web.UI.RadGrid)sender;

        GeneratePopulateDataGrids("paging");
        grdDynamicIAData.CurrentPageIndex = e.NewPageIndex;
        grdDynamicIAData.DataBind();
    }


Thank you.



Pavlina
Telerik team
 answered on 08 Aug 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?