Browse By Tags

  • Sorting on Grid Control

    Hi Guys, Is there any way to control the default sort of the Pick Ticket Grid? We need to be able to sort the lines on the order by location code, by clicking on the Field (which mimic's the paperwork) but the moment you click on any field on the…
  • Creating a compound filter (filterWhere) using the Client Side API

    This article is about the client side API. Specifically this article is concerned with how to write a script to handle the information within a grid and then apply an action to the cells, row or columns of the grid where more than one criteria is needed…
  • Control of Grids, Lists and Columns Using the Client Side API

    The Client Side API contains methods that make it much easier to select rows, columns and individual cells for manipulation. Properties can be set, new data displayed in tool tips and the style of each cell can be changed. The documentation contains…
  • Returning a number of rows within a grid without changing the user preferences

    Hi All. I have an asp page that returns multiple iframe grids. I changed my preferences to a specific grid size to make it look good. However, I was wondering if I could use the client API side of things to control how many grid rows are returned…
  • Compound filterWhere possible?

    Is it possible to perform compound filtering statements on grid rows? I've been trying without success. I want something like... crm.grids().rows().filterWhere('field_one', "le", new Date).filterWhere("field_two", "gt", 0).highlightRow("pink"); Perhaps…