Userfromcoloroado
Community Beginner
Userfromcoloroado
Community Beginner
Activity
‎Oct 29, 2018
09:20 AM
Apologies about being unclear. DATA from Query getNamesandRoles DISPLAYNAME JOBROLE X X does someting Y Y does someting Z Z does someting I want to populate the data in the format of the expected table with a loop so that the <td> for the headers are skipped but we can poplate displayname and Job role. Thank you.
... View more
‎Oct 26, 2018
08:43 PM
No, that is not what i was looking for. I guess my question is about looping through the query and appending the values sequentially in dynamically created TD's for Some header, Some other header , and Something else entirely. Some way to populate a table but skipping the first TD. <table class="table table-bordered"> <thead> <tr> <th scope="col">SomeroleID</th> <th scope="col">First</th> <th scope="col">Last</th> </tr> </thead> <tbody> <tr> <th scope="row">Some header </th> <td>X</td> <td>X does someting</td> </tr> <tr> <th scope="row">Some other header </th> <td>Y</td> <td>Y does someting </td> </tr> <tr> <th scope="row">Something else entirely</th> <td>z</td> <td>Z does someting </td> </tr> </tbody> </table>
... View more
‎Oct 26, 2018
12:55 PM
I have a query getNamesandRoles that will display the result as such DISPLAYNAME JOBROLE X X does someting Y Y does someting Z Z does someting I want to display the result of this query in a table which is shown below, I can get to show the results with a loop or through explicitly calling the query as getNamesandRoles.displayName[1] and so on, but I can figure out how to loop thru the query in a way that would skip the first row where the ID (i.e. all the scope="row") and populate the data in the other two Td's dynamically so that it we have more users it creates those TD's related to the ID. Can i accomplish this ? <table class="table table-bordered"> <thead> <tr> <th scope="col">SomeroleID</th> <th scope="col">First</th> <th scope="col">Last</th> </tr> </thead> <tbody> <tr> <th scope="row">RoleFunction</th> <td>X</td> <td>X does someting</td> </tr> <tr> <th scope="row">RoleFunction1</th> <td>Y</td> <td>Y does someting </td> </tr> <tr> <th scope="row">RoleFunction</th> <td>z</td> <td>Z does someting </td> </tr> </tbody> </table>
... View more
‎Aug 15, 2018
10:32 AM
A report that customers could choose thier fields and generate their own report, ofcourse we would provide the interface and the fields but the users get to dictate the format so a word, excel, html, pdf etc. Do you know a plugin that might let us do this or anything that would point us towards such a solution that we could build inhouse. Also as far as searching are thier search plugins that are very flexible and would work with coldfusion with some custom coding on our side. As for example we use high chart and that plugins pretty well.
... View more
‎Aug 14, 2018
08:50 AM
Can anyone please provide me some guidance towards applying dynamic reports and a google like search capability for our application. As of now we use verity for search but it seems verity has limitations. For reports what do you guys use to make dynamic reports ? is there a coldfusion plugin we can apply for reports ? Thank you for all the help
... View more