Workflow Soluiton

 View Only
  • 1.  ¿how to add a column in a grid?

    Posted Aug 25, 2014 12:38 PM

    Anyone know how i can add a column in a grid but i want add a column of checkbox, to i can select a row.

    I can hope you can help me with this, thanks



  • 2.  RE: ¿how to add a column in a grid?
    Best Answer

    Posted Aug 25, 2014 12:59 PM

    Try making the datatype of the column value a boolean/logical, and see if the grid automatically renders it as a checkbox



  • 3.  RE: ¿how to add a column in a grid?

    Posted Aug 25, 2014 01:36 PM

    Yes, that did the trick, but I can't modify the data base, so I would like to know if there is another way to get the job done without modifying the DB.

    Thanks



  • 4.  RE: ¿how to add a column in a grid?

    Posted Aug 26, 2014 09:33 AM

    If the grid is hooked up to a SQL query of your own, it doesn't have to tie to a DB column... for example, the "get" part of the statement could be:

    SELECT 0 AS FakeBooleanThatIsNotReallyThere, Column2, Column2... FROM foo



  • 5.  RE: ¿how to add a column in a grid?

    Posted Aug 26, 2014 10:38 AM

    is this tied to the same problem you reported here?

    https://www-secure.symantec.com/connect/forums/grid-component-0



  • 6.  RE: ¿how to add a column in a grid?

    Posted Aug 26, 2014 11:07 AM

    No, In fact the component already selected, but now i want to selecting using a checkbox, and thaks by the other problem



  • 7.  RE: ¿how to add a column in a grid?

    Posted Aug 26, 2014 12:53 PM

    if you're unable to do as reecardo suggested, you may want to try using a Checkbox List component.

    Take a look at this and see if it will work for what you're trying to do.  The "Output Data" will be an array of the selected items from the component.

    2014-08-26_10-45-32.png



  • 8.  RE: ¿how to add a column in a grid?
    Best Answer

    Posted Aug 28, 2014 10:54 AM

    it's because you're mapping the "SelectResultData" variable.  you need to map the (Source) variable at the top of the left column instead.



  • 9.  RE: ¿how to add a column in a grid?

    Posted Aug 28, 2014 11:12 AM

    Thanks, africo 



  • 10.  RE: ¿how to add a column in a grid?

    Posted Jan 08, 2015 06:36 PM

    thanks