Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. justme123

    problem in displaying the searchresults

    I have a list SearchResults which contains the searchresults...I have the following code in my jsp: <logic:iterate id="currentResult" name="GeneralMatterSearchForm" property="searchResults"> <tr class='off'> <td nowrap><bean:write name="currentResult" property="matterId" /></td> <td...
  2. justme123

    modal dialog

    I have lots of modal dialogs at several places in my application. This behaviour is very inconsistent..... the modal dialogs open up but with no contents and a parent browser window gets opened wiht the modal dialog contents. most of the times, they open up correct in the modal dialog. Any...
  3. justme123

    Getting the position of the cursor in a text area

    I want 2 things: 1. Get the position of the cursor in a text area 2. I want the cursor to be positioned at the end of the text while I tab out to diff. form elements and come bak to the same text area - is that doable?...
  4. justme123

    searching for a string within a listbox.....

    I haven't heard of that browser too...
  5. justme123

    searching for a string within a listbox.....

    thanks much kaht... I wrote this function with the help of your input that i could use .split method and it works fine... function searchForMatch(select, code) { var typedValue = code.toUpperCase(); var found = false; j=0; for (var i=0; i < select.options.length; i++) { if...
  6. justme123

    searching for a string within a listbox.....

    Hi kaht, thanks for your response.... answers to your questions: 1. yes 2. no other dashes What is this .split method?...can you pl. shed some info on this.... thanks
  7. justme123

    searching for a string within a listbox.....

    hi all, I have the foll. popup and I want help in writing a javascript function that will retrieve any values that matches the string in the list box(something like these - &quot;3040&quot; or &quot;live&quot;; 3040 is a code number that could be alphanumeric too). typically, the items...
  8. justme123

    clearing the contents of a frame frm a child window

    i have a window with 7 frames - on click of a button in my 2nd frame, i open a modal dialog with a cancel button.... now, when i click on the cancel button i want to clear the contents of the 5th frame and return to the main window.... my 5th frame name is searchResults... i...
  9. justme123

    search in progress.........

    i want to show a dialog box saying search in progress when the user submits the page for a search and be able to cancel the search on clicking the cancel button in the dialog box...how can i achieve this... thanx for ur help.......
  10. justme123

    how do i link the next/prev links to make it use these and display pag

    thanx for the response, venu... i did read abt the pager tag - i am making changes to somebody else's code - so, wanted to avoid changing too much of code - but looks like i shld try the pager tag ...i shall try and let u know... thanks...
  11. justme123

    how do i link the next/prev links to make it use these and display pag

    i am trying to use the length and offset attributes in the iterate logic tag for displaying records page by page.... <bean:define id=&quot;iterateLength&quot; name=&quot;FacilitySearchForm&quot; property=&quot;displayRecordCount&quot;/> <bean:define id=&quot;iterateOffset&quot...
  12. justme123

    searching for a string/characters within a listbox...

    just saw ur post...will try what u r suggesting and will let you know... thanks a bunch for helping me out!...
  13. justme123

    searching for a string/characters within a listbox...

    thanx much for the response!... i want to filter to match anywhere in the value... can u give me an example of using regex to implement this?...i would appreciate it very much!... thanks again
  14. justme123

    searching for a string/characters within a listbox...

    Hi, I have a text box and a listbox...in my JSP the listbox values get populated frm the database... i have a text box where the user can enter a string and on click of the filter button, it has to show me a new list with the list containing only the string/characters that the user has entered...

Part and Inventory Search

Back
Top