Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
215
browser specific controls
posted

Hi,

Is there any way to write browser specific controls in infragistics ?? Here is something in asp.net controls 

<asp:Button ie:Text="IEText" runat="server" mozilla:Text="FFText" />

Is something like this possible with infragistics controls  as well??

Thanks in advance.

Parents
No Data
Reply
  • 13438
    posted

    Hello Khushwant,

    Image, Dropdown and menu support those filtering:

     <igtxt:WebImageButton ID="WebImageButton1"
          ie:Text="IEText" runat="server"  mozilla:Text="FFText">
        </igtxt:WebImageButton>
        <ig:WebDataMenu ID="WebDataMenu1" runat="server">
           
          <ie:Items>
              <ig:DataMenuItem Text="ie">
                </ig:DataMenuItem>
                <ig:DataMenuItem Text="ie">
                </ig:DataMenuItem>
            </ie:Items>

             <mozilla:Items>
               <ig:DataMenuItem Text="ff">
                </ig:DataMenuItem>
                <ig:DataMenuItem Text="ff">
                </ig:DataMenuItem>
            </mozilla:Items>

        </ig:WebDataMenu>
        <ig:WebDropDown ID="WebDropDown1" runat="server" Width="200px">
           <ie:Items>
                <ig:DropDownItem Selected="False" Text="ie" Value="">
                </ig:DropDownItem>
                <ig:DropDownItem Selected="False" Text="ie" Value="">
                </ig:DropDownItem>
              </ie:Items>

              <mozilla:Items>
                <ig:DropDownItem Selected="False" Text="ff" Value="">
                </ig:DropDownItem>
                <ig:DropDownItem Selected="False" Text="ff" Value="">
                </ig:DropDownItem>
            </mozilla:Items>
        </ig:WebDropDown>

     

    When you are building a control and you dont want to allow device filtering you have to mark the classs of the control with Filterable(false). At the moment i have asked our Product managers if there are some control classes which are marked with this property as false.

Children
No Data