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 strongm 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: *

  • Users: bean1234
  • Content: Threads
  • Order by date
  1. bean1234

    Ruled Bsed optimization in DB2

    Hello Experts, I have a question regarding the ruled based optimization techniques used in DB2 ,if we have a set of conditions in the where clause, is there anyway we can affect the way those conditions are applied... Like if we have "where condition1 and condition2" etc and we know that...
  2. bean1234

    LIKE without wildcard versus = operator

    Hello Experts, I have a scenario where I need to compare multiple fields using the like operator in a SP and the input can have the wild card operator '%' or it might not have it , in either case I use the LIKE operator (like input_variable) in SQL. I would like to know if using the LIKE...
  3. bean1234

    Folder/Directory Structure Explorer on Client Machine.

    Hello Experts, I am trying to implement a module that allows the users thru a jsp to explore the file system on their machine and select multiple documents to be uploaded into the server. I am thinking how to go about it and the possible solutions seem to be using Swing /SWT in Java Web...
  4. bean1234

    Change the class of the tr element dynamically

    Hello Expets, I am applying the following cs to teh table rows and tds which are under a table with class name "subparent" .subparent tr.subhidden td { padding:3px 0px 3px 10px;background-color:#ffffff;display: none; } .subparent tr.subshow td { padding:3px 0px 3px...
  5. bean1234

    Dynamic IN Clause.

    Hello Experts , I am trying to build a dynamic in clause from a string passed in as an input parameter as follows but the following code doesnt work, but when I replace the IN clause content with a string literal it returns results, can you please let me what might be the issue here. The...
  6. bean1234

    Whats wrong with this

    Hello All, I get an error at the end of the fucntion i.e a syntax error in Mozilla, can you please let me know can you please let me know what wrong with this ,I am unable to see anything wrong with this piece of code. Thanks in advance! function initializeGroupByList(selectTag,jpfScopeID){...
  7. bean1234

    Select multiple options and still have a dropdown

    Hello Experts, I have a scenario where I need to let the users select multiple values from a dropdown and still have a dropdown becuase in HTML when you set the multiple attribute to 'true' you have to specify the size of the select tag and if you dont specify the size we have a select tag with...
  8. bean1234

    RedExp to replace the URl

    Hello Experts, I am using a regular expression to replace a url typed in input with an anchor to display the input, I am using the following code, the RegExp works fine but the replace method cannot replace the matched text.Please advise. <script>var test_match =...
  9. bean1234

    Identify a URL in a text input

    Hello Experts, I have a scenario where I have to indetify the URL with in a text message inserted by the user in a text box, the user enters text which could also contain hyperlinks like www.xyz.com, I need to identify that and display the url as a URL when the text message is displayed later...
  10. bean1234

    Concatenate the column values in query result as a single string

    Hello All, I am trying the following query select first_name + ' ' +middle_initial+ ' '+last_name as name, user_ids.racfid from user_ids,user_roles where user_ids.racfid = user_roles.racfid and user_roles.role_name = 'Publisher' I get an error ORA-01722: invalid number, as you can see I ma...
  11. bean1234

    google Suggest Question?

    Hello All, I have implemented Google Suggest like functionality using the dynamically created divs, if you look at the google suggest the drop down created overlaps the search buttons , by overlap I mean it hides the buttons when it needs to display the dropdown, however in my case the...
  12. bean1234

    Need to get rid of the table border.

    Hello All, I have table which incldues asubmit button also is the last row, howeevr even after I give border =0 for the encompassing table I see that there is a line that basically surrounds the td representing the button, in other words the td appears as a block with a line.I dont want the...
  13. bean1234

    nextSibling Issue

    Hello All, I am calling a javascrip function showHideAll as in the below code, the problem is that this.nextSibling always returns undefined.Please look at the following markup, by this.nextSibling I want to refer to teh next anchor tag <a>. <a href="#"...
  14. bean1234

    Difference in behaviour of the anchor tag

    Hello All, I want to call a javascript function on the click of a link ..if I use teh following I get an error saying that this.parentNode is not defined.. <a href="javascript:return toggle(this.parentNode.parentNode,this.firstChild,'button_collapse.gif','button_expand.gif');"><img...
  15. bean1234

    Display none doesnt hide the &lt;TD&gt;

    Hello All, The following HTML markup doesnt hide the contenet with in the td with style="display:none" can anyone please advise why IE is behaving so.. <tr><td style="display:none"> <tr class="d1" > <td>...
  16. bean1234

    Hiding the Div with JavaScript

    Hello All, I have a scenario where I need to hide all the elements with in a Div after a link is clicked.The elements with in DIv are aslo divs,but when I get the childNodes array by using div.childNodes attribute I always get the length of array as 1 and it doesnt return all the child...

Part and Inventory Search

Back
Top