GrapeCity.Win.MultiRow Namespace > GcMultiRow Class : UpdateFiltering Method |
<TakeCellFreezeAttribute(True)> Public Sub UpdateFiltering()
Dim instance As GcMultiRow instance.UpdateFiltering()
[TakeCellFreeze(true)] public void UpdateFiltering()
void gcMultiRow1_CellValueChanged(object sender, CellEventArgs e) { // After user edit, the new value of the cell should be hidden. // Call UpdateFiltering to Perform filter based on newest value. if (e.Scope == CellScope.Row && e.CellIndex == 0) { this.gcMultiRow1.UpdateFiltering(); } }
Private Sub gcMultiRow1_CellValueChanged(ByVal sender As Object, ByVal e As CellEventArgs) Handles gcMultiRow1.CellValueChanged ' After user edit, the new value of the cell should be hidden. ' Call UpdateFiltering to Perform filter based on newest value. If e.Scope = CellScope.Row AndAlso e.CellIndex = 0 Then Me.gcMultiRow1.UpdateFiltering() End If End Sub
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2