sorry that was by mistake
saigowthami
Posts
-
ddslick set Max height -
ddslick set Max heightMy code is like this
$jq('#portlet:namespace/PNLanguage'+ languageId).ddslick({
data : parsedLanguageData,
width:200,
Height:300,
selectText: "Select Language"Which is working fine. But when we select the value and go for another dropdown, it is showing the empty space if the list size is less than the height.
When I change the value of height parameter to max-height=300 then works fine. How to give this in ddslick in above code.
Please help me on this.
-
ddslick set Max heightMy code is like this
$jq('#portlet:namespace/PNLanguage'+ languageId).ddslick({
data : parsedLanguageData,
width:200,
Height:300,
selectText: "Select Language",Which is working fine. But when we select the value and go for another dropdown, it is showing the empty space if the list size is less than the height.
When I change the value of height parameter to max-height=300 then works fine. How to give this in ddslick in above code.
Please help me on this.
-
Generating Random Questions from answersHi, I am developing an application, where I need to convert the answers as questions, for example if the Ans : my internet connection is slow. its corresponding question might be Question : Why your internet connection is slow? Like wise, is there any way or any algorithm in java. Kindly assist.
-
JSP StyleID clarificationI have seen for JSP or JS discussion forum here in code project. I dint get it so asked here.
-
LZ4 compression implemented source code in javaCan you please explain the requiremt more clearly.
-
JSP StyleID clarificationYa that is fine. That is ID only. what I am asking is, I should assign the label with checkbox option. But instead of giving as input type, as shown in existing code snippet, there is a styleId 'vendorchkbox' right. Where this might be assigned as checkbox? that place I want to know to create new checkbox with another field.
-
JSP StyleID clarificationHi,
In my JSP I am trying to add a field with a check box option. I am modifying the existing code.
Existing Code is,
<tr> <td class="right"> <signifo:label key="vendor.title"/> Enabled </td> <td class="left"> <html:checkbox property="vendorEnabled" styleId="vendorchkbx" onclick="isVendorEnabled(this);"/> <html:hidden property="vendorEnabled" value="false"/> </td> </tr>
Modified one is
<tr>
<td class="right">
<signifo:label key="duplicatecheck.title"/> Enabled
</td>
<td class="left">
<html:checkbox property="duplicateCheckEnabled" styleId="duplicatechkbx"/>
</td>
</tr>In modified one, styleId is duplicatechkbx, please tell me where this might be assigned as check box?
In any Java script or CSS??I have no idea.. please somebody help.
-
Java application to transfer files and foldersya i used the socket programming only with two applications, client and server and transferred successfully... Thank you for the reply!!!
-
Java application to transfer files and foldersthanks
-
OneWay hash encryption error in different Os.Ya i have posted my code in my previous reply itself
-
OneWay hash encryption error in different Os.ok but my database is in linux machine, where the strings encrypted and saved to database, while i m running the same encryption util in linux the output is not matching with the database one. Meanwhile both places the code is same to encrypt the string.
-
OneWay hash encryption error in different Os.meaning?? have you tried to encrypt the string in both windows and linux??
md = MessageDigest.getInstance("SHA-512");
md.update(plaintext.getBytes("UTF-8"));byte raw\[\] = md.digest(); String hash = (new BASE64Encoder()).encode(raw); return hash;
This is what I have used to encrypt
-
OneWay hash encryption error in different Os.No it is not about the last character of string. see for example if i do one way hash for '1234567890127866' have a look on the outputs Windows: +zWcE7pR4k97ysyi54WS4G6J1Qjfp/tXllE23mMLCFBrIONMlrXyMw9aF1UCFKCFjbcz0Yzge78u(THIS IS THE PLACE WHERE I M GETTING CR LF)Usye+/4Ulw== Linux: +zWcE7pR4k97ysyi54WS4G6J1Qjfp/tXllE23mMLCFBrIONMlrXyMw9aF1UCFKCFjbcz0Yzge78u(THIS IS THE PLACE WHERE I M GETTING ONLY LF)Usye+/4Ulw== which means the whole characters represents single string
Regards Gowthami
-
OneWay hash encryption error in different Os.Hello, When i am encrypting a string (One way hashed) using SHA algorithm, the output differs from two different platforms. When done in windows, an extra CR (CR LF) character is appearing but when done in linux box only LF character is appearing in between the output encrypted value. FYI - CR (enter) LF(Space) This leading me with issues in further process of application. Kindly help for the same Gowthami
-
Java application to transfer files and foldersHello, I am trying to code an application, like sync operation between two machines to transfer the files and folders through internet. Is it possible to use ftp or any other in java and write the application? Regards Gowthami