This is a migrated thread and some comments may be shown as answers.

Filter exception

4 Answers 59 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Segev
Top achievements
Rank 1
Segev asked on 04 May 2014, 02:08 PM
Hi,

We upgraded to the latest version (2014.1.425.40) few days ago.
We have few grids with inline filter.
This is the grid's decleration:

<telerik:RadGrid id="gridLgs" runat="server" AllowSorting="True" AutoGenerateColumns="false" AllowMultiRowSelection="true" AllowFilteringByColumn="true" OnNeedDataSource="GridViewControl_NeedDataSource" Width="99%" Height="320px" Skin="HPX" EnableEmbeddedSkins="false">

As you can see, we have our own skins:
Skin="HPX" EnableEmbeddedSkins="false"

After the upgrade, all grids with filter throws exception:
Telerik.Web.UI.GridFilterMenu with ID='rfltMenu' was unable to find an embedded skin with the name 'HPX'. Please, make sure that the skin name is spelled correctly and that you have added a reference to the Telerik.Web.UI.Skins.dll assembly in your project. If you want to use a custom skin, set EnableEmbeddedSkins=false.

But 'HPX' is not an embedded skin... And we declared EnableEmbeddedSkins=false.

Please advise. It's urgent.

Thanks,
Guy.

4 Answers, 1 is accepted

Sort by
0
Milena
Telerik team
answered on 07 May 2014, 02:51 PM
Hello Guy,

Our dev team is currently investigating this problem. The issue occurs, because EnableEmbeddedSkins property is not automatically set to Filter menu, when it is set to RadGrid. You can set EnableEmbeddedSkins property directly to filter menu as a possible workaround:

protected void RadGrid1_Init(object sender, System.EventArgs e)
    {
        GridFilterMenu menu = RadGrid1.FilterMenu;
        menu.EnableEmbeddedSkins = false;
    }

I hope this helps.

Regards,
Milena
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
0
Segev
Top achievements
Rank 1
answered on 08 May 2014, 05:36 AM
For now we downgraded to 2014.1.403.40, and it works.

Thanks,
Guy.
0
Milena
Telerik team
answered on 12 May 2014, 03:47 PM
Hello Guy,

Our developers fixed this problem and the fix will be part of our next internal build, which will be available tomorrow. You can download this version of the controls and verify how it works on your side.

Regards,
Milena
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
0
Segev
Top achievements
Rank 1
answered on 13 May 2014, 05:57 AM
Thanks.
Tags
Grid
Asked by
Segev
Top achievements
Rank 1
Answers by
Milena
Telerik team
Segev
Top achievements
Rank 1
Share this question
or