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

  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

    Thank you guys for your replies (fredericofonseca & HanbingL ), from what I could infer from you posts like can be as efficient as the = operator if not used with the wild card operator. HanbingL that was interesting to know that = operator would pick up the trailing spaces as well.
  3. 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...
  4. 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...
  5. bean1234

    Change the class of the tr element dynamically

    I mean even if I use "display:table-cell" I am still not able to show it back.
  6. bean1234

    Change the class of the tr element dynamically

    I was able to hide but I am not able to show it back even if I use the display:block. Thanks.
  7. 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...
  8. bean1234

    Dynamic IN Clause.

    Hello Lewis, The second code I had a typo actually I am passing 'POSITION_DETAIL','SECURITY' in the working code, the problem is you cant have a dynamic IN clause, you will have to use Dynamic SQL , I was avoiding to not to use it , but looks like there is no way out.
  9. 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...
  10. bean1234

    Basic login form validation problem

    try changing the parameter name to 'loginform'
  11. bean1234

    Whats wrong with this

    Thanks Monksnake,actually there was a syntax error outside this function in the js file , for some reason the mozilla debuger was pointing to this curly bracket .
  12. 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){...
  13. bean1234

    How to I change value of dynamic form field when checkbox is checked?

    Where's the function CBoxA('#i#') defined?
  14. bean1234

    Parsing AJAX Response objects

    Hello jcale, Since you are exploring the data exchange format , I would recommend using JSON instead of XML for its simplicity, and yes you will have to using some form of data exchaneg format unless you want to write your down yoru own complex parser .It all depends on the the complexity of...
  15. bean1234

    Select multiple options and still have a dropdown

    Thanks Kaht! I kinda thought so , but I wanted to double check here to see if I have an option.Thanks anyways.
  16. 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...
  17. bean1234

    RedExp to replace the URl

    Thanks Kaht Here's the modified RegExp /((((\b|^)https?:\/\/)|((\b|^)www\.))(([A-Za-z\d][\B]*)+))/gi
  18. bean1234

    RedExp to replace the URl

    Thanks I was able to resolve it but please advise on the efiiciency or correctness of the regular expression. Thanks!
  19. 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 =...

Part and Inventory Search

Back
Top