Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Stop the execution of the filterEditorSubmit

    Dear All,

    In the listgrid filter I want based on some condition to stop the execution of the filtering action, to do that I used the below code, I noticed if the filterEditorSubmit returned false one time then the filter will never work again even if the filterEditorSubmit doesn't return false.



    Code:
    filterEditorSubmit (criteria){
    
    	if (condition){
    	
    		return false;
    
    	}
    }
    Can you put your comments regarding that and tell me if there is any other solution for that

    Version : SmartClient_v90p_2014-01-14_PowerEdition

    #2
    This is not reproducible just from the type of code you've shown here, as you can readily confirm if you try it in a sample.

    If you think you've found a bug in SmartClient, please post a ready-to-run, minimal test case and we can take a look.

    Comment

    Working...
    X