Re: [Radiant] accessing params[] inside a tag

2007-05-18 Thread luca . erzegovesi
Luca, I have developed an extension that allows for the looking up of records and the displaying of field info. I haven't packaged it and made it available as of yet since I still wanted to add a few more features and clean it up; however, you're welcome to it. If you're interested, just let

Re: [Radiant] accessing params[] inside a tag

2007-05-18 Thread Mario T. Lanza
I have made my extension available. See: http://www.ruby-forum.com/topic/108491#247243 -- Posted via http://www.ruby-forum.com/. ___ Radiant mailing list Post: Radiant@lists.radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site:

Re: [Radiant] accessing params[] inside a tag

2007-05-17 Thread Mario Lanza
Luca, I have developed an extension that allows for the looking up of records and the displaying of field info. I haven't packaged it and made it available as of yet since I still wanted to add a few more features and clean it up; however, you're welcome to it. If you're interested, just let

Re: [Radiant] accessing params[] inside a tag

2007-05-17 Thread Saji Njarackalazhikam Hameed
Hi Mario, Could I also get a copy of your extension? Thanks, saji * Mario Lanza [EMAIL PROTECTED] [2007-05-18 06:02:54 +0200]: Luca, I have developed an extension that allows for the looking up of records and the displaying of field info. I haven't packaged it and made it available

Re: [Radiant] accessing params[] inside a tag

2007-05-17 Thread Saji Njarackalazhikam Hameed
Hi Mario, Could I also get a copy of your extension?

[Radiant] accessing params[] inside a tag

2007-05-15 Thread luca . erzegovesi
Hi. I am developing a family of tags that should do the following: - find_by_id a given record for a Model in the database -show field values for that record This tags are defined in a Model which inherits from Page This tag should work inside a radiant page called through a normal

Re: [Radiant] accessing params[] inside a tag

2007-05-15 Thread Daniel Sheppard
The problem is that I cannot find a way to retrieve the value of the 'id' param in the code for tags which are placed in the called page. I have tried the following (without success) curId = params[:id] curId = tag.locals.params[:id] curId = tag.globals.params[:id] curId =