Conditional Operator NotEqual is missing a space

Hello,

Is there any way to update the conditional operator 'NotEqual' to 'Not Equal'. Other operators ('Not In', 'Is Empty') have spaces but this one doesn't so this is inconsistent and has been remarked on by a customer




Regards
Vincent

3 Replies 1 reply marked as answer

MK Mohan Kumar Ramasamy Syncfusion Team October 20, 2020 11:39 AM UTC

Hi Vincent, 
 
We have checked your reported query, we are able to reproduce the reported issue in our end. We have logged a issue report for this and we will include this fix in our upcoming patch release. 
 
We would like you to suggest a workaround to use Operators property, its can be customize the operator’s value. Please refer the below code snippets. 
 
 
<SfQueryBuilder Width="70%" DataSource="@DataSource"> 
        <QueryBuilderRule Condition="and" Rules="@Rules"></QueryBuilderRule> 
        <QueryBuilderColumns> 
            <QueryBuilderColumn Field="CustomerId" Label="CustomerId" Type=Syncfusion.Blazor.QueryBuilder.ColumnType.Number Operators="Operator"></QueryBuilderColumn> 
            <QueryBuilderColumn Field="EmployeeId" Label="EmployeeId" Type=Syncfusion.Blazor.QueryBuilder.ColumnType.String Operators="Operator"></QueryBuilderColumn> 
            <QueryBuilderColumn Field="Verified" Label="Verified" Type=Syncfusion.Blazor.QueryBuilder.ColumnType.Boolean Operators="Operator" Values=@Values></QueryBuilderColumn> 
    </SfQueryBuilder> 
@code{ 
 
    List<OperatorsModel> Operator = new List<OperatorsModel> { 
                new OperatorsModel { Text = "Equal", Value = "equal" }, 
                new OperatorsModel { Text = "Greater than", Value = "greaterthan" }, 
                new OperatorsModel { Text = "Less than", Value = "lessthan" }, 
                new OperatorsModel { Text = "Less than or equal", Value = "lessthanorequal" }, 
                new OperatorsModel { Text = "Greater than or equal", Value = "greaterthanorequal" }, 
                new OperatorsModel { Text = "Not equal", Value = "notequal" } 
            }; 
} 
 
For your reference, we have prepared a sample based on this, please refer below link. 
 
 
 
Please let us know, if you need any further assistance. 
 
Regards, 
Mohan Kumar R  


Marked as answer

VM Vincent McCarthy October 21, 2020 06:39 AM UTC

Hello Mohan,

many thanks for the detailed response it is very helpful

Regards
Vincent


MK Mohan Kumar Ramasamy Syncfusion Team October 21, 2020 06:48 AM UTC

Hi Vincent, 
 
Thanks for update. 
 
The reported issue fix will be included in our upcoming patch release. Until then appreciate your patience.   
 
Regards, 
Mohankumar R 


Loader.
Up arrow icon