Hi, I have been looking for a way to figure out how to set a specific width of specific column Right now, this scheduler automatically calculates the width of the cell based on the content when i call DataBind(). But I want to set a certain column to have certain width(not the size of entire content) to set that column to be small. Is there a way to implement this feature? Thank you for your help!
Do you need to set the column width in the Calendar or in the Scheduler control?
Actually, I figured it out with using
RowHeaderWidthAutoFit = "false" on ASP.NET
and then scheduluer.HeaderColumns.Add(new RowHeaderColumn("NEW COLUMN", 200)) <= size of the column to be 200px
Great, thanks for the update!
Thank you for quick updates!!