Using RadSpreadsheet in Winforms, I am in trouble because Source File(xlsx) Cell color and cell color in radspreadsheet are different as well as not work conditional formatting after import.
I attached file source code used and captured image for radspreadsheet after import.
Can anybody help me to solve this problem?
This there a way to increase the number of buttons per page when enabling pagination for gridview?
First image is from the examples page on Pagination. The Second image is what is rendered from the newest TelerikUI WinForm R2 2022 SP1
Hello,
I'm trying to use one pinned column but when moving the bar the text from the others columns became mixed with the pinned column.
How to fix it?
Best Regards,
Marco Gaspar
I have a radgridview bindingsource that is being filtered using cell values. How do I prevent the bindingsource from being re-filtered when cell values change?
Hello
Is there a reason why tooltips can not be set at Design Time on buttons?
Thank you
Is there no API that basically provides?
It looked okay at first because it was implemented like the code below. However, pressing Next Button will not update on days other than that month.
private void radCalendar1_ElementRender(object sender, RenderElementEventArgs e)
{
if (e.Day.Date.Year == DateTime.Now.Year
&& e.Day.Date.Month == DateTime.Now.Month
&& e.Day.Date.DayOfWeek == DayOfWeek.Sunday)
e.Element.ForeColor = Color.Red;
}
First
After, Next Button Click
Hi,
I want to change the VALUE of the button button per row.
1) Look at this column to determine button value, (3) if tick I want to show "IFC->" and if not ticked I want to show "->IFC" ( For info : IFC stand for Interface Contract)
2) I also tried to add a column in the DATASOURCE. But struggle to make the field a button. This is also option I I can get this to be a button
//*
//**********************************************************************************
//*
//* The IFC Button
//*
//**********************************************************************************
//*
GridViewCommandColumn ifc_action = new GridViewCommandColumn();
ifc_action.HeaderText = "IFC Action";
ifc_action.DataType = typeof(string);
ifc_action.DefaultText = "->IFC";
ifc_action.UseDefaultText = true;
ifc_action.FieldName = "btn_ifc_action";
this.grd_db_imported_table.Columns.Add(ifc_action);
Hello,
Is there any prop or name to set remove a grid border?
As of now I am using grid component from kendo react and it looks like a iframe in my website. So, I want to remove grid border so that it looks like on the page!
Hi there!
I'm programming in an old language so most of these events are a little buggy. Any formatting event throws by far the most bugs so I managed to go around them and make the programs work. However right now i need to change a column header color without using those events. I found in this site a way to change the cell color by using
THIS-OBJECT:gridCabecalhos:Rows[currentRowIndex]:Cells[currentColumnIndex]:Style:BackColor = THIS-OBJECT:currentColor
Is there a way to do the same to the column headers?
JP