jQuery UI Widgets Forums Grid Can we update value in jqxgrid filters textbox

Tagged: 

This topic contains 1 reply, has 2 voices, and was last updated by  Stanislav 6 years, 6 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author

  • ImSanjay
    Participant

    How can we modify value in jqxgrid filters

    $(“#treegrid”).jqxTreeGrid(
    {
    source: dataAdapter,
    pageable: true,
    pagerMode: ‘advanced’,
    pageSizeMode: ‘root’,
    pageSize: 2,
    pageSizeOptions: [‘1’, ‘2’, ‘3’],
    columnsResize: true,
    sortable: true,
    filterable: true,
    theme: “custom”,
    filterMode: ‘advanced’,
    altRows: false,
    width: getWidth(“TreeGrid”),
    /*width: “100%”,*/
    ready: function () {
    $(“#treegrid”).jqxTreeGrid(‘expandRow’, 0);
    $(“#treegrid”).jqxTreeGrid(‘expandRow’, 1);
    //$(“#treegrid”).jqxTreeGrid(‘expandRow’, ’16’);
    var localizationObject = {
    filterstringcomparisonoperators: [’empty’, ‘not empty’, ‘contains’, ‘contains(match case)’, ‘does not contain’, ‘does not contain(match case)’, ‘starts with’, ‘starts with(match case)’, ‘ends with’, ‘ends with(match case)’, ‘equal’, ‘equal(match case)’],
    // filter numeric comparison operators.
    filternumericcomparisonoperators: [‘equal’, ‘not equal’, ‘less than’, ‘less than or equal’, ‘greater than’, ‘greater than or equal’],
    // filter date comparison operators.
    filterdatecomparisonoperators: [‘equal’, ‘not equal’, ‘less than’, ‘less than or equal’, ‘greater than’, ‘greater than or equal’],
    // filter bool comparison operators.
    filterbooleancomparisonoperators: [‘equal’, ‘not equal’]
    }
    $(“#treegrid”).jqxTreeGrid(‘localizestrings’, localizationObject);

    },
    columns: [
    { text: “Project ID”, dataField: “projectid”, pinned: true, width: 150, cellclassname: “programtooltip”, cellsrenderer: cellsRenderer },
    { text: “Project Name”, dataField: “projectname”, width: 150 },
    { text: “AC Project Name”, dataField: “acprojectname”, width: 130, filterable: false, sortable: false },
    { text: “AC Project Status”, dataField: “acprojectstatus”, width: 130 },
    { text: “PDAT/NPDAT”, dataField: “pdat”, width: 120 },
    { text: “AC Team Members”, dataField: “members”, cellsAlign: ‘right’, width: 130 },
    { text: “Compl. Capabilities”, dataField: “cc”, cellsAlign: ‘right’, width: 140 },
    { text: “Open Capabilities”, dataField: “oc”, cellsAlign: ‘right’, width: 140 },
    { text: “Compl. Features”, dataField: “cf”, cellsAlign: ‘right’, width: 120 },
    { text: “Open Features”, dataField: “of”, cellsAlign: ‘right’, width: 120 },
    { text: “CY ETC Cost ($)”, dataField: “cyetc”, cellsAlign: ‘right’, width: 110, cellsformat: ‘c2’ },

    /*{ text: “Current Active Team Members(TMs)”, dataField: “catm”, cellsAlign: ‘right’,width: 80 },
    { text: “Approx. Total Staffing Plan TMs ETC Hrs”, dataField: “atspe”, cellsAlign: ‘right’,width: 80 },
    { text: “Current Active Support Members (SMs)”, dataField: “casm”,cellsAlign: ‘right’, width: 80 },*/
    { text: “APEP ETC Hrs”, dataField: “ETC_Hours”, cellsAlign: ‘right’, width: 130, cellsformat: ‘n’ },
    { text: “APEP ETC Cost($)”, dataField: “ETC_Cost”, cellsAlign: ‘right’, width: 120, cellsformat: ‘c2’ },
    { text: “Estimated Date”, dataField: “Estimated_Date”, cellsAlign: ‘center’, width: 120, cellsformat: ‘dd-MM-yyyy’ },

    /*{ text: “Budget”, cellsAlign: “left”, align: “left”, dataField: “budget”, cellsFormat: “c2”, width: 300 },
    { text: “Location”, dataField: “location”, cellsAlign: “left”, align: “left”, resizable: true }*/
    ]
    });


    Stanislav
    Participant

    Hello ImSanjay,

    Can you please give us some more information?
    What exactly do you mean by ‘How can we modify value in jqxgrid filters’?

    Which value exactly are you trying to modify?

    Best Regards,
    Stanislav

    jQWidgets Team
    http://www.jqwidgets.com/

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.