4 messages in com.googlegroups.google-mashup-editorRe: exceptionally simple request on w...| From | Sent On | Attachments |
|---|---|---|
| littlebloke | 21 Jun 2007 07:42 | |
| Jason | 22 Jun 2007 10:12 | |
| littlebloke | 26 Jun 2007 01:56 | |
| Jason | 26 Jun 2007 18:21 |
| Subject: | Re: exceptionally simple request on word serching.![]() |
|---|---|
| From: | littlebloke (litt...@gmail.com) |
| Date: | 06/26/2007 01:56:30 AM |
| List: | com.googlegroups.google-mashup-editor |
Thats great,
I'm still a little stunned at how flexible these systems are...
Thank you for the advice, I'll go away and mess around now!
On Jun 22, 6:12 pm, Jason <gmej...@google.com> wrote:
GME to the rescue! If you place your keywords in a Google Spreadsheet, you can subsequently publish it as a GData feed which can be queried. For example, if your spreadsheet was to have a single column labeled "keywords", the following should work:
<script type="text/javascript"> <![CDATA[ var url = <YOUR_SPREADSHEET_URL_HERE>;
function lookUp() { var searchBox = document.getElementById("mySearch"); var myList = google.mashups.getObjectById("myList");
if(searchBox.value == '') myList.setData(url); else myList.setData(url + '?sq=keywords%3D' + searchBox.value); } ]]> </script>
<input id="mySearch" type="text" /> <input type="button" value="Search" onclick="lookUp()" />
<gm:list id="myList" />
- Jason
On Jun 21, 7:43 am, littlebloke <litt...@gmail.com> wrote:
I have a file, currently a CSV file, but the format is flexible. It contains a master list of keywords that I wish to search.
The aim is for this keyword list to be used for tagging, myself and others need to reference this list to see if the tag/keyword we wish to use is available to us.
essentially I wish to search the file and display the results, it does not even have to be aware of spelling mistakes!
however I would like to incorporate this facility into a small website... soooooo...
is this at all possible?
its so simple, yet it seems its too simple to be done!- Hide quoted text -
- Show quoted text -




