Re: JSTL XML, URL, and SQL tags, does anyone use them?

2002-06-12 Thread Borislav Iordanov
UI and business logic. Cheers, Boris - Borislav Iordanov Kobrix Software http://www.kobrix.com - Original Message - From: Jayson Falkner [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Tuesday, June 11, 2002 10:12 PM Subject

Re: JSTL XML, URL, and SQL tags, does anyone use them?

2002-06-11 Thread Borislav Iordanov
and doing XML parsing/tranforms from the JSPs anyway. Cheers, Boris - Borislav Iordanov Kobrix Software http://www.kobrix.com - Original Message - From: Jayson Falkner [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Tuesday, June

Re: JSTL XML, URL, and SQL tags, does anyone use them?

2002-06-11 Thread Borislav Iordanov
people create JSPs as views. Cheers, Boris - Borislav Iordanov Kobrix Software http://www.kobrix.com -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: How to split results over multiple pages with DBtags ?

2002-05-10 Thread Borislav Iordanov
Hi, Take a look at the TICL (Tag Interface Component Library) GUI toolkit - http://www.kobrix.com. There's a server-side component there called TableView that has a pager (creates page numbers and navigation for next and previous sets of pages) and in general manages paging state for you.

Re: [JSTL] Java enum constants

2002-04-15 Thread Borislav Iordanov
Hi, I think accessing the static values of the class of the actual object would be fine (well-defined, clear, intuitive). But I agree it departs from the objects with properties model. In any case, a mechanism for defining (and/or accessing) named constants would be nice. Thanks for the

[JSTL] Java enum constants

2002-04-14 Thread Borislav Iordanov
Hi, It would be useful if the JSTL expression language supported enum constants access through the '.' operator. For example: class A { public final static int ENUM_1 = 0; public final static int ENUM_2 = 1; public int getType() // returns one of ENUM_1, ENUM_2 etc... } and then

Re: id attribute

2002-03-12 Thread Borislav Iordanov
Thanks Clive. I've got my problem resolved. Boris van Hilten, Clive wrote: Hi Boris - post your code and I'll try it in my container. Clive -Original Message- From: Borislav Iordanov [mailto:[EMAIL PROTECTED]] Sent: 07 March 2002 18:43 To: Tag Libraries Users List Subject: Re

Re: id attribute

2002-03-07 Thread Borislav Iordanov
/trading.jsp?id= + strId%'/ /oui:primary_path /oui:p /oui:card /oui:wml -Original Message- From: Borislav Iordanov [mailto:[EMAIL PROTECTED]] Sent: 06 March 2002 19:07 To: [EMAIL PROTECTED] Subject: id attribute Hi all, Does anybody know what a JSP container

id attribute

2002-03-06 Thread Borislav Iordanov
Hi all, Does anybody know what a JSP container is supposed to do when an 'id' attribute of a custom tag is specified through a run-time expression value? For example: in mytaglib.tld tag namemytag/name attribute nameid/name rtexprevaluetrue/rtexprvalue

Re: help: %.. how do i convince them to learn JSP?

2002-02-12 Thread Borislav Iordanov
Your problem is quite more general than JSP/tags/CGI/etc. - how do you teach a programmer things like good style and code/design/structure esthetics? It is incredibly hard, especially when dealing with just get it working type of people. The main benefit from tag libraries and the MVC approach in

RE: RE: If/Else tag?

2001-06-09 Thread Borislav Iordanov
Hi, I'm just wondering, what's wrong with scriplets. I'm really failing to find any value in a tag replacement of the usual and natural Java if statement. It seems to me that the useful conditional tags are the ones with some predefined and parametrizable (in a simple way) conditions, like