Focal Point
[Closed] IB Composer

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/3747058666

January 22, 2014, 12:53 PM
Praneeth Maguluri
[Closed] IB Composer
Hi all,

I am not familiar with IB composer for e.g IbComposer_execute, IbComposer_setCurrentSelection etc

I would like to know if any tutorials available for this so that we can understand how to use it.

Any help would be appreciated.
Thanks

This message has been edited. Last edited by: Kathleen Butler,


WebFOCUS8
Windows 7
AHTML,Excel,PDF,HTML
January 23, 2014, 05:59 AM
SSander
Hi,
Help for all the JS functions can be found here:
http://infocenter.ibi.com/wf80...source%2Ftopic23.htm

But Im not sure if there is any tutorial or guide with real good examples.
Regards,


Release: WebFOCUS 8104, AppStudio: 8105
OS: Windows
Output: HTML,Excel,Active Reports
January 23, 2014, 07:18 AM
David Glick
They are API functions we have provided for specific needs. You may not even need to use them. They are documented with examples in the manual.


David Glick
Director WebFOCUS App Studio
and WebFOCUS Developer Studio
WebFOCUS Division
Information Builders, Inc.
Direct (917) 339-5560
Voice Mail (212) 736-6250 x3560
Fax (212) 947-5168
Email david_glick@ibi.com
January 23, 2014, 10:13 AM
Praneeth Maguluri
quote:


HI Sander,

Thanks for the link.It is available in the help of developer studio.It is not very clear how to use here.So I was asking for tutorial where novice like me can easily understand its implementation


WebFOCUS8
Windows 7
AHTML,Excel,PDF,HTML
January 23, 2014, 11:01 AM
Rhonda
I found this from the Summit 2013 -
Summit 2013 HighlightsFile
Format: PDF/Adobe Acrobat
Pages in HTML Composer. Every Time! ... Adding Great Styling to WebFOCUS Applications With HTML Composer. • Magically Filter ... Educational Tutorials.
www.informationbuilders.com
https://www.informationbuilder...dm_piece_flyer_f.pdf

1File Format: PDF/Adobe Acrobat
tutorial to help you understand and develop a customized UAS named-user application is available from the Information Builders inter- nal Business Intelligence ...
www.informationbuilders.com
www.informationbuilders.com/new/pdf/WFN0402.pdf

Hope these get you started... Of course there is always the old-fashioned way...RTFM..Read The WebFOCUS Manual. I don'tknow what release you have but you can download a copy for yourself from the IBI website.

http://documentation.informati...omp/wf77htmlcomp.pdf. The manual contains a tutorial in Chapter 10.

Cheers,
Rhonda


WebFOCUS & ReportCaster 8.1.05, 7.7.03 - AIX/LINUX, FOCUS 7.6.13 MVS, Output PDF, XLS-XLSX, DOCX and HTML
January 23, 2014, 12:25 PM
Francis Mariani
Let's hope the examples in the version 8 documentation are better than the ones in the version 7.7.03 documentation - because those are quite inadequate and sometimes wrong.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
January 23, 2014, 12:43 PM
Rhonda
Thanks for letting us know about the imperfections in the documentation.

Cheers,
Rhonda


WebFOCUS & ReportCaster 8.1.05, 7.7.03 - AIX/LINUX, FOCUS 7.6.13 MVS, Output PDF, XLS-XLSX, DOCX and HTML
January 23, 2014, 01:41 PM
Francis Mariani
Example 1:

Selecting the ALL Value in a Listbox With onafterload

function listbox1_onafterload(ctrl){
alert(IbComposer_isSelected(ctrl.id, 'ALL'));
}


An alert does not select anything.

Example 2:

Populating a Listbox With onbeforeload

function listbox1_onbeforeload(ctrl,arrValuesToLoad) {
for(var i = 0; i < arrValuesToLoad.length; i++) {
    alert(arrValuesToLoad[i].dispValue + " " + arrValuesToLoad[i].value +
    " " + arrValuesToLoad[i].selected);
    }
} 


An alert does not populate anything.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server