[CLOSED] Multiselect loading mask

  1. #1

    [CLOSED] Multiselect loading mask

    Hi,

    With this multiselect:

    <ext:MultiSelect ID="lstCampos" runat="server" AnchorVertical="100%"
                                                DisplayField="Etiqueta" ValueField="Etiqueta" SingleSelect="true">
                                                <Store>
                                                    <ext:Store ID="dsCampos" runat="server" AutoLoad="false" ShowWarningOnFailure="false">
                                                        <Proxy>
                                                            <ext:AjaxProxy Url='<%# ViewData[ViewModel.ROUTE_URL_FILTRO]+"/ListaCampos" %>' AutoDataBind="true">
                                                                <Reader>
                                                                    <ext:JsonReader Root="data" />
                                                                </Reader>
                                                            </ext:AjaxProxy>
                                                        </Proxy>
                                                        <Model>
                                                            <ext:Model runat="server" IDProperty="CodigoInterno">
                                                                <Fields>
                                                                    <ext:ModelField Name="TipoConceptoFiltro" Type="String" />
                                                                    <ext:ModelField Name="Etiqueta" Type="String" />
                                                                    <ext:ModelField Name="EtiquetaSinTraducir" Type="String" />
                                                                    <ext:ModelField Name="Longitud" Type="Int" />
                                                                    <ext:ModelField Name="IsVisible" Type="Boolean" />
                                                                    <ext:ModelField Name="Tabla" Type="String" />
                                                                </Fields>
                                                            </ext:Model>
                                                        </Model>
                                                        <Parameters>
                                                            <ext:StoreParameter Name="FiltroCI" Value="myNamespace.getFiltroCI()"
                                                                Mode="Raw" />
                                                            <ext:StoreParameter Name="TipoFiltro" Value='<%# ViewData[FiltroParams.TIPO_FILTRO] %>'
                                                                Mode="Value" AutoDataBind="true" />
                                                        </Parameters>
                                                        <Listeners>
                                                            <Load Fn="myNamespace.camposFiltroLoaded" Delay="10" />
                                                            <Exception Fn="myNamespace.errorHandler" />
                                                        </Listeners>
                                                    </ext:Store>
                                                </Store>
                                                <ListConfig>
                                                    <Listeners>
                                                        <ItemClick Handler="myNamespace.loadControl(record);" />
                                                    </Listeners>
                                                </ListConfig>
                                            </ext:MultiSelect>
    When store loads, appears a loading mask with "loading..." text.

    How can I:
    1. Remove this mask
    2. Change this text


    I need both cases.

    Thanks!
    Last edited by Daniil; Sep 12, 2012 at 11:22 AM. Reason: [CLOSED]
  2. #2
    Hi,

    Please use the LoadMask and LoadingText properties of ListConfig.
  3. #3
    Ok, thanks for the info.

Similar Threads

  1. [CLOSED] [1.0] Loading mask does not
    By Jurke in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Aug 11, 2010, 3:30 PM
  2. [CLOSED] [1.0] Loading Mask
    By Timothy in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Apr 15, 2010, 3:35 PM
  3. How to position the loading mask
    By borgx in forum 1.x Help
    Replies: 0
    Last Post: Feb 25, 2010, 3:38 AM
  4. Page Loading Mask
    By sachin.munot in forum 1.x Help
    Replies: 1
    Last Post: Oct 13, 2009, 9:27 AM
  5. Loading Mask
    By speedstepmem3 in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Nov 25, 2008, 6:55 AM

Tags for this Thread

Posting Permissions