Browse By Tags

  • IgGrid column templating: Double quotes break each block

    I can only use single quotes in my column templates. Either one should be valid HTML.

    See example: jsfiddle.net/.../

  • how access igGrid dataSource after REST bind?

    Hi,

    I want use template for one igGrid column after it is filled with REST data

    and somehow cannot access data loaded in the grid like below code,

    dataSource = $("#grid1").igGrid("option", "dataSource");  is empty.....

     

  • Iggrid rowtemplate compatibility issues

    Hi,

    We were previously using an earlier version of Ignite UI (version 13.2). We were able to  specify the row template  at grid model level in the controller . For eg.,

    var model = new GridModel { AutoGenerateColumns = false, Width = "100%"};…

  • igGrid templating

    Here simple column with template :

    key: 'Audit',
    unbound: true,
    headerText: 'Audit',
    template: '<span class="auditButton" onclick="uoaAuditSet(${ig_pk})" ></span>',
    width: '10%'

    which renders…

  • Grid column template with mvc view

    Hi,

    I'm doing some templating on grid column and I wonder to know how to do it in best way. Here what I want to do.

    I have a block of html which show a list in sort of treeview like

    + Menus

       menu1

       menu2

    TreebarView.cshtml  (or html)

    @model…

  • Condition in each grid column

    Hi,

    I create a grid where each column will show an information in depend of the other column value. Lets say:

    I have a model that is populated by my action:

    ProductModel

       ProductId

       ProductName

       ProductStatus

    What I want to do know is to add a css…

  • Configuring igGrid using a GridModel (MVC4, templating)

    Hi,

    I have an existing asp.net MVC4 web app that I am trying to get igGrid to work with.  I was searching around your help forum and found an example that got a grid to display on the index.cshtml file just fine using the non-gridModel approach.  The code…

  • Script for upload template column in grid, stops grid from filtering/paging

    I am using ASP.NET MVC4 and 2013 vol1 with VS 2012.

    Martin from Infragistics was kind enough to give me a solution on how to add an upload control to a grid column.
    https://www.infragistics.com/community/forums/f/ignite-ui-for-javascript/80549/adding-an…

  • Adding an upload control into a grid template column

    I'm using MVC 4 and 2013 vol 1 with Visual Studio 2012.


    I've had a look at the sample on how to create a row/column template, yet the example purely shows adding HTML as a string to the template.

    Is it possible to add an upload control into…

  • iggrid row template not checking condition properly for any other string numbers other than 0 and 1

    Hi,

    I am having row template condition like " {{if ${Diffusion1} == ${Diffusion2} && ${Diffusion1} == '0'}} " and another condition " {{elseif ${Diffusion1} == ${Diffusion2} && ${Diffusion1} != '0'}} ". The values Diffusion1…

  • Unable to set conditional row template

    I am trying to set conditional row template for my iggrid .Following is the code : 

    $("#MyGrid").igGrid({
    showHeader: true,
    autoGenerateLayouts: false,
    columns: [
    { headerText: "Id", key: "id", dataType: "string" , hidden:true }, …

  • Template processing on row expansion

    I have a column with a conditional Template, which changes the value of the column cell if one of the OTHER values in the row equals true/false. It looks a bit like this:

    {{if ${IsValueWithheld} == true}} <span class='waiting-auth-label'>Waiting for…

  • Column styles (css classes) specified in rowTemplate not applied when new rows added to empty grid

    We are using rowTemplate to specify css classes for columns based on internal critiera.

    This works perfectly when the grid is loaded with data, and the styles are correctly applied to new rows that are added.

    However, if there are no rows in the grid…

  • make an entire row a link

    Hello,

     

    I need to make an entire row be a link. How can I do this in iggrid?

     

    Thanks.

  • Column Template from GridModel replicating across grid

    When applying a Template via the GridModel object like:

    model.Columns[0].Template = "<a href=\"/blah/{{html id}}\">{{html name}}</a>";

    OR

    model.Columns[0].Template = "<a href=\"/blah/${html id}\">${name}</a>";…

  • Column Templates for the jQuery Grids

    In my last blog I mentioned that our jQuery Grids are getting a new column template option that would also be using our new high performance Templating engine and in this blog will try to expand on both templating and what can you do with it in the grids…

  • IgniteUI jQuery Grid Unbound Columns: Updating and Hierarchy

    igniteui-jquery-grid-unbound-columns-updating-hierarchyUnbound Columns bring you the freedom of flexible layouts in the IgniteUI Grid and neat support for features to make your grid behave like nothing’s that different.  After you’ve seen some of the capabilities (getting started blog) and inner…

  • jQuery Grid Checkbox Column alternatives (continue)

    This is the second part covering the topic of jQuery Grid checkbox column alternatives and/or custom implementations. A quick recap: the Checkbox column is a feature that provides default setup to turn Boolean values in the jQuery grid into checkboxes…

  • jQuery Grid Unbound Column: How to make the most of it

    Ignite UI jQuery Grid's Unbound Columns and configuring it to make the most of it.When in need of displaying columns with separate data – be it from a different source or based on the values of others – this new column type will prove truly helpful. Be sure to read the introductory blog on how to get started with jQuery…

  • jQuery Grids and Responsive Web Design

    Responsive Web Design and jQuery GridsResponsive Web Design has been abuzz for some time now. In case you just now clash with the term, it’s a web design approach aimed at crafting sites to provide an optimal viewing experience across a wide range of devices. Basically, a CSS3 / JavaScript…

  • New High Performance jQuery Templating Engine

    As an avid reader of our blogs (we are sure you are), you might have noticed some topics regarding templating our controls or parts of them. As part of that came a minor catch – templating required (and as long as we are waiting for 12.1, it still does…

  • jQuery Grid Checkbox Column alternatives

    The checkbox column (introduced with the last release, see this post on Using Checkbox Columns with the Infragistics jQuery Grid) was created to provide a ‘shortcut’ for transforming columns with Boolean values into checkboxes and mostly became reality…