no way to edit customer information in 2.0

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 years ago
I do not have an edit link on my laptop... I do on my server and another PC, all 3 systems are running IE9, Windows 7 Professional X64.

Anybody know what the real issue is that is causing the edit column to disappear?

Jim
12 years ago
I found a workaround that now shows the edit but it still does not allow filtering.

in NOP.Admin/Views/Customer/List.cshtml
comment out the hidden fields used for filtering so it looks like this

                        //hidden column used for filtering
                        //columns.Bound(x => x.SearchCustomerRoleIds)
                        //    .Width(5)
                        //    .Filterable(false)
                        //    .Hidden(true);
                        //columns.Bound(x => x.SearchCustomerEmail)
                        //    .Width(5)
                        //    .Filterable(false)
                        //    .Hidden(true);
                        //columns.Bound(x => x.SearchCustomerUsername)
                        //    .Width(5)
                        //    .Filterable(false)
                        //    .Hidden(true);
                        //columns.Bound(x => x.SearchCustomerFirstName)
                        //    .Width(5)
                        //    .Filterable(false)
                        //    .Hidden(true);
                        //columns.Bound(x => x.SearchCustomerLastName)
                        //    .Width(5)
                        //    .Filterable(false)
                        //    .Hidden(true);
                        //columns.Bound(x => x.Active)
                        //     .Width(100)
                        //     .Template(x => x.Active.ToString().ToLower())
                        //     .Centered()
                        //     .Filterable(false);
                        columns.Bound(x => x.CreatedOn)


The code that is generated has double semicolons
<td style="display:none;width:0;display:none;width:0;;display:none;width:0">&nbsp;</td>

and IE 9; Win7 chokes on these but Firefox 6 does not.

Maybe this will help someone find a better solution.
12 years ago
The solution is to make an 'Email' column clickable. It's already done and will be available in version 2.2. Find the changes here
12 years ago
same issue here in I.E 9.0 with screen resolution 1360 x768. thanks for the fix.
12 years ago
a.m. wrote:
The solution is to make an 'Email' column clickable. It's already done and will be available in version 2.2. Find the changes here


this solution will have problem when search for customer with "Guests" role when they don't have an email.
12 years ago
[email protected] wrote:
this solution will have problem when search for customer with "Guests" role when they don't have an email.

Thanks. Fixed.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.