[CLOSED] GroupField : GroupField value not showing

  1. #1

    [CLOSED] GroupField : GroupField value not showing

    Hi
    I add a group in gridpanel's store
     .GroupField("StrDate")
     .GroupDir(Ext.Net.SortDirection.DESC)
    and model is
    Html.X().ModelField().Name("StrDate").Type(ModelFieldType.String),
    also assign a column in grid with the same group field
    Html.X().Column()
    .Wrap(true)
    .Text("Requisition Date")
    .DataIndex("StrDate")
    .Resizable(true)
    .Flex(1)
    but column dose not show.but If I remove
     .GroupField("StrDate")
     .GroupDir(Ext.Net.SortDirection.DESC)
    the column show with value.how can I set this ,so its work for both.show group and the value in column as well.
    Last edited by Daniil; Mar 17, 2015 at 1:50 PM. Reason: [CLOSED]
  2. #2
    Hi @matrixwebtech,

    Please clarify are you adding a Grouping plugin to the GridPanel?

    Could you, please, provide a full test case to reproduce the problem?
  3. #3
    I can describe the problem with http://mvc2.ext.net/#/GridPanel_Plug...oupingSummary/ you group records on Name field .GroupField("Name") and also add a column Project
    Html.X().Column()
    .Text("Project")
    .DataIndex("Name")
    .Width(20),
    but the Project Column showing.
  4. #4
    Do you expect a grouped Column should be hidden by default?

    It is not hidden by default. To change it you can set HideGroupedHeader="true" for a Grouping plugin.

Similar Threads

  1. Replies: 4
    Last Post: Jul 12, 2013, 4:03 PM
  2. GroupField and Sorting
    By mkshields9w57 in forum 1.x Help
    Replies: 1
    Last Post: Oct 06, 2011, 9:35 PM
  3. [CLOSED] Use Grid Grouping without sorting by the groupField ?
    By ndotis in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Sep 08, 2011, 7:17 PM
  4. Replies: 6
    Last Post: Aug 06, 2009, 1:17 PM
  5. [CLOSED] multiple groupField
    By alexp in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Jun 16, 2009, 8:11 AM

Posting Permissions