Hello all
How to fill the multicolumncombobox in radgridview with the data
i have follow the example and it's work now. if i made by my self it's can't work.
i change this code
Dim col As GridViewMultiComboBoxColumn = New GridViewMultiComboBoxColumn()
col.DisplayMember = "KodeBarang"
col.ValueMember = "NamaBarang"
col.FieldName = "Kode"
col.HeaderText = "Kode"
col.DataSource = (ds.Tables("MstBarang"))
AddHandler RadGridView1.CellBeginEdit, AddressOf radGridView1_CellBeginEdit
or how to set datasource of gridviewmulticolumncombobox ????
Thanks before ..
Hello,
Is it possible to change the height of my CheckedDropDownList and then wrap the items inside? I'd like to have multiple rows of checked items.
Thank you!
Hi,
On click on Gridview cell , rad scroll able panel scrolls to left .
Controls tree
(Parent) Rad scrollable panel --> panel --> rad page view --> rad grid view (child )
Please find attached image.
Thanks.
I have some RadToggleButtonElements in a RadRibbonBar, and I'm trying to apply a theme to them. I already have a theme manager assigned to the ribbon bar, and it appears to be working correctly for the other control types on the ribbon bar. The RadToggleButton theme is loaded into the theme manager but it isn't being applied to the toggle buttons. I've checked the IsThemeApplied property on the buttons at runtime just to be sure, and it's always false. I found a previous post (http://www.telerik.com/forums/toggle-button-style) about how to add a RadStylesheetRelation to the RadToggleButton theme's xml file, and I tried that, but it's still not working. Is there something else I'm missing?
Note: This same RadToggleButton theme is used on another form as well, and it's working there, so I don't believe there's anything wrong with the theme itself. The only difference that I can see is that the toggle buttons on the other form are not being used in a ribbon bar.
Thank you!
Hi,
I am having trouble sorting a ListView with Custom Items and Custom Groups.
I have Created a SortDescriptor and Enabled Sorting. I have also got a ListViewCustomComparer.
My ListViewCustomComparer is being called and it does appear to be comparing items fine but the ListView never appears sorted.
I did find this article http://www.telerik.com/forums/sorting-items which seems to describe my issue perfectly and it was deemed a problem in the ListView.
I am using version 2016.1.216.40 and was wondering if this was ever fixed and if so what might I still be doing wrong?
Thanks
private
void
AddImage(RadGridView TheGrid, MemoryStream mStream)
{
Image TheImage = System.Drawing.Image.FromStream(mStream);
GridViewImageColumn ImageColumn =
new
GridViewImageColumn();
ImageColumn.ImageLayout = ImageLayout.Stretch;
ImageColumn.Width = 1095;
ImageColumn.IsVisible =
true
;
radGridView1.MasterGridViewTemplate.Columns.Add(ImageColumn);
radGridView1.MasterGridViewTemplate.Rows.Add(TheImage);
radGridView1.Refresh();
}
radGridView1.MasterGridViewTemplate.Columns.Add(Chart);
radGridView1.MasterGridViewTemplate.Rows.Add(ChartImage.Image);
radGridView1.Refresh();
}
private
void
radGridView1_Click(
object
sender, EventArgs e)
{
if
(
this
.radGridView1.Rows.Count != 0)
{
ExportToPDF exporter =
new
ExportToPDF(
this
.radGridView1);
exporter.FileExtension =
"pdf"
;
exporter.ExportVisualSettings =
true
;
exporter.PageTitle =
"Chart"
;
exporter.FitToPageWidth =
true
;
exporter.PdfExportSettings.EnableCopy =
true
;
exporter.SummariesExportOption = SummariesOption.ExportAll;
string
fileName =
"C:\\ExportedData.pdf"
;
exporter.RunExport(fileName);
}