Jump to content

lasse

Newbies
  • Posts

    5
  • Joined

  • Last visited

Everything posted by lasse

  1. So I kind of figured out why. In my layout the current buttons have been created below some text font field. Is that due to an old filemaker issue? This causes my IWP layout buttons not to work. If I change it in FM7 by placing a new button it automatically gives the option to enter text. Is there any way you can edit your text on the buttons you have already placed? Thanks
  2. The FM view in a browser looks very similar to the layout in FM. But thats about it. I have some problems where the stylesheets is not allowing some of the layout links to work. The links are there but they are shiftet to the left of the text. When I look at the html (or cgi script?) I can see that it is creating lots of redundant div and span tags. Currently the tag for the link is ending before the Text which is my link? How come? Does anybody know a way to clean this up or fix? Is there any settings or script you can manipulate and fix your layout in a browser with? Perhaps if you could attach a simple css file it would really clean up lots of the tags? Here is an example of just one of the many tags: MY LINK HERE Notice that the tag which is a javascript onclick event is ending before the text of my link. This causes my link not to be visible or obvious. The link has disappeared by malicious placed div ending tag. Can you fix that? How can you move the ending div tag to the right side of my link? Any hints or clues will be greatly appreciated!!! Thanks
  3. Sorry about that. That wasn't my attentions. I don't understand what you are saying. I seems to work for me. The idea is to use a recursive call from explodedString to explodedKey with the RightWord so you iterate through the title and strip out the first word and do the same again like: "My Book" 1 M My My My B My Bo My Boo My Book B Bo Boo Book This way you will cover all cases, like "My Great Book" and get "Great Book" included as well as "Book" etc etc.. Thanks!
  4. Thank you, here is what I did: I used the functions from: http://www.briandunning.com/filemaker-custom-functions/list.php ExplodedKey(text) = if(Length(text)>1; ExplodedKey( Left(text; Length(text)-1) )& ¶ & text; text ) ExplodedString(text) = ExplodedKey(text) & ¶ & if( WordCount(text) <> 1; ExplodedString(RightWords(text;WordCount(text)-1)); "" ) I then changed the calculation to: NameRelate = 1 & ¶ & ExplodedString(Title) Now a given search for a word like 'Book' will find all the relevant titles containing this word. A little simpler but also makes the Indexes a little slower to update and the file bigger! So be aware! After the update is made, will it have any other consequences besides the extrastorage for the long title names being exploded?!? Will it effect the find relationship time for many titles? Find other similar functions here: http://www.briandunning.com/filemaker-custom-functions/list.php
  5. I have a questions regarding how this FM search works which I hope someone can help me clarify. The FM file have a text field on the top of a layout page. The thing is the search only return exact matches to its input. This field is not available in Find mode. The search is for a given title entry. Currently I have located it to this: There is a (=) relationship from the textfieldname to a table called NameRelate. NameRelate = 1 & "¶" & Left(Title;1) & "¶" & Left(Title;2) & "¶" & Left(Title;3) & "¶" & Left(Title;4) & "¶" & Left(Title;5) & "¶" & Left(Title;6) & "¶" & Left(Title;7) & "¶" & Left(Title;8) & "¶" & Left(Title;9) & "¶" & Left(Title;10) & "¶" If you do a search with '1' you get all Titles. But if you do a search for 'Book' as in 'My Book' you get nothing. Also if you enter a title longer than 10 char you get nothing, which is obvious. Why would you ever have a search options like this? How can you modify it to handle new criteria such as "Book"?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.