or
Private Sub radListView3_CellFormatting(sender As Object, e As Telerik.WinControls.UI.ListViewCellFormattingEventArgs) Handles RadListView3.CellFormatting If e.CellElement.Data.HeaderText = Me.RadListView3.Columns("NoteDate").HeaderText And TypeOf (e.CellElement) Is DetailListViewDataCellElement Then e.CellElement.Text = [String].Format("{0:D}", (DirectCast(e.CellElement, DetailListViewDataCellElement)).Row(e.CellElement.Data)) End IfEnd Subprivate void gwOffer_CellFormatting(object sender, CellFormattingEventArgs e){ if (gwOffer.Rows[e.CellElement.RowIndex].Cells["FieldA"].Value != null) { if (gwOffer.Rows[e.CellElement.RowIndex].Cells["FieldB"].Value != null) { e.CellElement.ToolTipText = "Sagsstatus: " + gwOffer.Rows[e.CellElement.RowIndex].Cells["FieldB"].Value; } }}private void gwOffer_DataBindingComplete(object sender, GridViewBindingCompleteEventArgs e){ for (int i = 0; i < gwOffer.Rows.Count; i++) { if (gwOffer.Rows[i].Cells["FieldA"].Value != null) { if (gwOffer.Rows[i].Cells["FieldB"].Value != null) { gwOffer.CurrentRow = gwOffer.Rows[i]; gwOffer.CurrentColumn = gwOffer.Columns["FieldA"]; GridDataCellElement cell = gwOffer.CurrentCell; if(cell!=null) cell.ToolTipText = "Sagsstatus: " + gwOffer.Rows[i].Cells["FieldB"].Value; } } }}| AD | 12.01 |
| AD | 13.01 |
| AD | 14.01 |
| AD | 15.01 |
| BD | 23.01 |
| BD | 24.01 |
| BD | 25.01 |
| BD | 26.01 |
| CD | 27.01 |
| CD | 28.01 |
| CD | 29.01 |
| CD | 30.01 |
| DD | 27.01 |
| DD | 28.01 |
| DD | 29.01 |
| DD | 30.01 |
| Main | 10 |
| Main | 20 |
| Main | 30 |
| Main | 40 |
| MAIN | AD | BD | CD | DD |
| 10 | 23.01 | 27.01 | 27.01 | 12.01 |
| 20 | 24.01 | 28.01 | 28.01 | 13.01 |
| 30 | 25.01 | 29.01 | 29.01 | 14.01 |
| 40 | 26.01 | 30.01 | 30.01 | 15.01 |
MulCmb.EditorControl.FilterDescriptors.Add(Id, FilterOperator.StartsWith, 0);
But if i uesed this code ، i don't have problem .
MulCmb.EditorControl.FilterDescriptors.Add(Id, FilterOperator.IsGreaterThanOrEqualTo, 0);
But I must used FilterOperator.StartsWith.
How can i fix this problem?
Could you help me?
