Hello
I would like to set grid lines width to bold them in gridview. Is it possible?
All the best
I am using the 2016 Q2 release of the RadCalendar control...
I have reviewed the years old threads regarding the week selection in a Calendar control and I am still unable to achieve what I am after. Hopefully someone can help...
When the form is loaded, I want the Calendar to display the month for the system date, and select all days in the associated week for the system date, using a Sunday - Saturday week format. So if today is Aug 3, 2016, I would want the Calendar to display 7 columns, 6 rows, showing dates Jul 31, 2016 to Sep 10, 2016, with the dates for the current week, Jul 31, 2016 to Aug 6, 2016 selected.
Additionally, if the User selects any other date in the Calendar, I want to clear to previous week selection, and select all days in the associated week for the select date, using a Sunday - Saturday week format. So if User selects Aug 24, 2016, I would want the previous week to not be selected, and select all days for which the selected date falls between, Aug 21, 2016 - Aug 27, 2016.
In the end, there would only ever be 7 days selected in the Calendar which would equal 1 week in time.
Any guidance would be most appreciated.
Hi,
I have a problem. We have migrated from old library to RadPageView and everything is working, except ShortCuts to specific tabs. In previous library we had feature that, we can add & before letter and it has been using as a shortcut to this tab. Also this char has underline under themselves. Is if possible to do it in Telerik? I was looking for it, but without success
Thank you in advice for any answers.
Best regards,
Patryk
Hello
I need to open the contextmenu of a radgridview without having the current row changed.
Can I identify if the right mouse button is clicked and cancel the current row changing
or do I need to open the menu from the MouseUp event, in which case I need to identif the row on which the right mouse is click event is fired
Thanks in advance
Best Regards
Hi,
i need to create a custom RadDiagramConnector with custom shape then add it to a shape like RoundRectShape and i should connect from it with a drag operation to another RoundRectShape and create programmaticalli the connection.
It is possible to have a complete example
Thanks in advance
Raffaele Z.
Hello,
I'm trying to use RadGridView to export a datatable to Excel. I've created a method that takes a datatable as a parameter, creates a RadGridView, sets the dataSource to the datatable, and then exports. Problem is that the RadGridview doesn't seem to be getting populated with the contents of the dataTable. I feel like I'm missing something like 'gridView.DataBind();' but I can't find anything like that in the documentation. Code is below:
public static void ExportToExcel(DataTable myDT)
{ using (Telerik.WinControls.UI.RadGridView grid = new Telerik.WinControls.UI.RadGridView())
{
grid.AutoGenerateColumns = true;
grid.DataSource = myDT;
//grid.LoadElementTree();
//grid.Refresh();
GridViewSpreadExport spreadExporter = new GridViewSpreadExport(grid); SpreadExportRenderer exportRenderer = new SpreadExportRenderer();
spreadExporter.RunExport("c:\\exportedFile.xlsx", exportRenderer);
}
}