SFmultiselect not wokring as expected on new version on grid

When I was using the older version with the below code SFmultiselect working as expected.

but after the update, it is not working. so can you please help me to fix this issue. 

 <GridColumn Field=@nameof(Student.ClassANameTags) Width="300" TextAlign="TextAlign.Left" HeaderText="Test " >

                        <Template>

                    @if ((context as Student).ClassAName != null)

                        {

                            @((MarkupString)((context as Student).ClassAName.Replace(",","<br />")))

                        }

                    @if (string.IsNullOrEmpty((context as Student).ClassAName))

                            {

                                <div style="height:100px;" class="manualEntry">

                                </div>

                            }

                            else

                            {

                                <div style="font-weight:bold;">

                                    @((MarkupString)((context as Student).ClassAName.Replace(",","<br />")))

                                </div>

                            }

                        </Template>

                        <EditTemplate>

                            <SfMultiSelect @ref="multiSelect" TValue="string[]" TItem="ClassAFields" Mode="@VisualMode.CheckBox" Placeholder="Select Course Name " ID="ClassATags" DataSource="@ClassAFields" @bind-Value="@((context as Student).ClassANameTags)" ShowSelectAll="@ShowSelectAllCheckBox" ShowDropDownIcon="@EnableDropDownIcon" FilterBarPlaceholder="Search" PopupWidth="450px" PopupHeight="350px">

                                <MultiSelectFieldSettings Text="Text" Value="Text"></MultiSelectFieldSettings>

                            </SfMultiSelect>

                        </EditTemplate>

                    </GridColumn>


    private List<ClassAFields> supportingEvidenceFields = new List<ClassAFields>()

{

        new ClassAFields(){ ID= "1", Text= "Maths" },

        new ClassAFields(){ ID= "2", Text= "Physics" },

        new ClassAFields(){ ID= "3", Text= "Science" },

        new ClassAFields(){ ID= "4", Text= "English" },

    };

 Note :- You can able to show that on edit multi-select showing System.String[] instead of the value.

SFMultiSelect.PNG






4 Replies

RS Renjith Singh Rajendran Syncfusion Team July 29, 2021 12:06 PM UTC

Hi Karan, 

Greetings from Syncfusion support. 

We have confirmed it as a bug and logged the defect report When using SfMultiSelect in Edittemplate, the Edited data is not properly rendered on saving the cell in Batch” for the same. Thank you for taking the time to report this issue and helping us improve our product. At Syncfusion, we are committed to fixing all validated defects (subject to technological feasibility and Product Development Life Cycle) and including the defect fix in our weekly release which is expected to be rolled out by the mid of August, 2021.  
 
You can now track the current status of your request, review the proposed resolution timeline, and contact us for any further inquiries through this link.       

Regards, 
Renjith R 





KP Karan Patel replied to Renjith Singh Rajendran July 29, 2021 12:12 PM UTC

Can you please be able to do something and fix this issue before 2 Aug? we have to move our project to our production environment and we are just not able to do that just because of these bugs.  Please do something on your version there are lots of bugs and that's waste of lots of time for us. 



RS Renjith Singh Rajendran Syncfusion Team July 30, 2021 11:42 AM UTC

Hi Karan, 

We have planned to include the fix for this issue in our upcoming weekly patch release which is expected to be rolled out on August 3, 2021. 

Until then we appreciate your patience. 

Regards, 
Renjith R 



RS Renjith Singh Rajendran Syncfusion Team August 4, 2021 12:12 PM UTC

Hi Karan, 
 
We are glad to announce that our latest patch release(19.2.0.51) has been successfully rolled out. We have included the fix for this issue “When using SfMultiSelect in Edittemplate, the Edited data is not properly rendered on saving the cell in Batch” in our latest version release. So please upgrade to our latest release for latest fixes and features.  
 
Please get in touch with us if you would require any further assistance.   
    
Regards,              
Renjith R  


Loader.
Up arrow icon