| this.radTreeView1.ItemDrag += new RadTreeView.ItemDragHandler(radTreeView1_ItemDrag); |
| RadTreeNode draggingItem = e.Node; |
| if (GetTagValue(draggingItem.Tag.ToString(), "Type") == "Document") |
| { |
| DataObject dragData = GetDragDropFile(draggingItem); |
| if (dragData != null) |
| { |
| this.DoDragDrop(dragData, DragDropEffects.Copy); |
| } |
| else |
| { |
| MessageBox.Show("There was a problem with this file. Please check to make sure you have access, and that you have recently refreshed the Outlook View.", "Error...", MessageBoxButtons.OK, MessageBoxIcon.Error); |
| } |
| } |
Dear All,
I want to ask about some features if it is applicable in RadGrid for windows before buying the control:
First of all: I want to display HTML text (contains HTML Tags like <B>, <i> and font coloring HTML Tags) saved in the Database into grid column, is this can be done using RadGrid for windows? I mean will the column understand the html tags and convert them to colors and styles like what is happening with RagGrid for Web?
Second and the most important: I want to display multiple images (icons) in the same column, and each row contains different icons than the other, is there something like custom column (Template Column) that I can use to display multiple images in certain cell?
Another simple feature that I didn’t read about it, is paging supported in this grid?
Please before replying to this thread, be sure that the functionalities I want is doable with this Grid.
Regards,
Tayseer
'Code for filing combobox.
drpModelNumber.AutoCompleteMode = AutoCompleteMode.Suggest
drpModelNumber.DataSource = oUnitsDT
drpModelNumber.DisplayMember =
"Part_Number"
'code for selected index
Private Sub drpModelNumber_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles drpModelNumber.SelectedIndexChanged
InputBox(
"Please Enter the Quantity", "Quantity", "", , )
End Sub
Any suggestions?
Dear All,
I want to ask about some features if it is applicable in RadGrid for windows before buying this control:
First of all: I want to display HTML text (contains HTML Tags like <B>, <i> and font coloring HTML Tags) saved in the Database into grid column, is this can be done using RadGrid for windows? I mean will the column understand the html tags and convert them to colors and styles like what is happening with RagGrid for Web?
Second and the most important: I want to display multiple images (icons) in the same column, and each row contains different icons than the other, is there something like custom column (Template Column) that I can use to display multiple images in certain cell?
Another simple feature that I didn’t read about it, is paging supported in this grid?
Please before replying to this thread, be sure that the functionalities I want is doable with this Grid.
Regards,
Tayseer