Search Results

Type: Posts; User: bobs

Search took 0.01 seconds.
  1. Hi Raks,

    Pls try like this.


    grid.store.baseParams.searchText="some text";


    Regards,
  2. Thread: Label style

    by bobs
    Hi Javito,

    Please try like this.




    <ext:Label ID="Label1" runat="server" Text="Default" StyleSpec ="text-align:left; font-size:40px; background-color: red;" ></ext:Label>
  3. To enable , please add EnableKeyEvents = true.




    <ext:TextField ID="TextField1" runat="server" EnableKeyEvents="true" >
    <Listeners>
    <KeyUp Handler="alert('Keyup');" />
    </Listeners>
  4. Please try like this...





    <style type="text/css">
    .x-grid3-td-EmployeeName {color: red; height:50px;}
    </style>
  5. Please try like this (Format="m/Y").



    <ext:DateField runat="server" ID="openingDate" FieldLabel="Opening Date" Format="m/Y" Width="120"></ext:DateField>



    Regards,
  6. Hi,

    Please help me to create multiple controls in grid Panel editor. Depending on data change in one column I need to display a combo editor or a text field editor .

    I have tried using the...
  7. Thanks for the quick reply. It worked.
  8. Hi All,

    I have an editable grid with one column populated from a Combobox. I need to change the Next column text based on Combo Box Selected Value.

    Any Idea?

    Please find the attached image....
  9. Please try like this..

    This is some what tricky to set the scroll position. Hope there is better method from experts to solve this. But i tried like below code and its working for my grid to...
  10. Please try like this ....



    <ext:TextField ID="searchText" runat="server" Text="" EnableKeyEvents="true">
    <Listeners>
    <KeyUp Fn="searchColumn_KeyUp" />
    </Listeners>
    ...
  11. Hi Allen,

    Please try like this.





    // row color...
    <style type="text/css">
  12. Thanks for the reply. I am using normal asp post back methods.
    My task is to create dynamic collite controls from server side when selecting an item of a combox. I want to clear those controls by...
  13. Hi All,
    How to invoke serverside method from client side script (javascript)?

    Thanks in advance.
  14. Not sure, Just call CheckEdit() in Page_Load() to initialise.
  15. Hi all,

    Is there any way to validate controls at server side and display error message in ext.Msg.Show({}} alert???
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta...
  16. we can validate like this:


    <AjaxEvents>
    <Click OnEvent="SaveClick" Before="return validate();" Success="Ext.Msg.alert('', 'Saved');"></AjaxEvents>


    and in javascript section

    <script...
  17. Drag and Drop between Two Grids (both ways):

    Create 2 grids

    Left Grid: (Add column model and other tags. I just mentioning items required for drag and drop)



    <ext:GridPanel...
  18. Please try like this..


    <script language="javascript" type="text/javascript">

    function GridPanel1() { return eval('<%=aGridPanel1.ClientID%>'); }



    then in button Funtion
  19. Is there any way to place a TextField in GridPanel Button Area. I want to look like my GrigPanel bottom button area like the attached screen. I can able to do this with bottom toolbar. But button...
  20. I have removed panels and Fitlayouts and Grid directly in West and center regions. but the GUI display is totally collapsed.
    Again one gird behind another. See attaached screen shot(screen3.jpg)
    ...
  21. I have a strange problem with Broderlayout.

    Inside my borderlayout there are two grids with drag and drop functionality. One in west area and another in Center area.
    But while loading at first...
  22. Try this..
    var selectionModel = gridPanel().getSelectionModel();
    selectionModel.selectRow(0);

    Regards,

    BOBY
  23. Hi,

    Thankyou very much for quick reply.
    I have tried all combinations SortType="asUCText" , SortType="None" and without SortType.
    But its not displaying with lowercase as fist with ASC...
  24. When am droping an item to a grid with grouping mode, each droped item creating individual "None" group. I have attached the issue.
    How can i solve this issue?
  25. Store sortType is not working in my code.

    [CODE]
    <ext:JsonReader Root="Rows" TotalProperty="totalCount">
    <Fields>
    <ext:RecordField Name="teamid" />
    ...
Results 1 to 25 of 25