The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
ADAdministrator Syncfusion Team September 7, 2004 06:29 AM
You need to change the DropDownRows on the embedded droplist (which can vary from cell to cell). Here is a forum thread that has some code snippets.
http://www.syncfusion.com/Support/Forums/message.aspx?MessageID=7330
ADAdministrator Syncfusion Team September 9, 2004 01:34 AM
if i ''globally'' set the default to say 20 using
Syncfusion.Windows.Forms.Grid.GridComboBoxCellRenderer cr = (Syncfusion.Windows.Forms.Grid.GridComboBoxCellRenderer)sortGrid.CellRenderers["ComboBox"];
if (cr.ListBoxPart is GridComboBoxListBoxPart)
((GridComboBoxListBoxPart)cr.ListBoxPart).DropDownRows = 20;
then on datasource bound combos you seem to end up with blank rows on the end which must be a bug.
this is with version 2.0.5.1
ADAdministrator Syncfusion Team September 9, 2004 02:50 AM
Version 2.1.0.9 has a fix for this. The problem usually shows up when dropdownrows was set to a larger value (greater than 6 or 8).