Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/21/19 in all areas

  1. Maybe this can help you. resize the webbrowser ejemplo_layout.rar
    3 points
  2. I wasted 2 days in this because some easy to avoid mistakes, read these to save some time 1- IF you Are going To install the Certificate on a stand alone Exe application Flow these 1- Before you start buy or install certificate you must read this first. a. http://www.unigui.com/doc/online_help/ssl_configuration.htm b. http://www.unigui.com/doc/online_help/getting-a-ssl-certificate-from.htm c. http://forums.unigui.com/index.php?/topic/8380-eidosslgetmethoderror-in-ssl-enable/&do=findComment&comment=43321 2- Don’t generate req.csr file using IIS as godaddy instructs , install and use openssl as the document above describes to generate 2 files. - download openssl from http://slproweb.com/products/Win32OpenSSL.html 3- Keep key.pem in safe place IE don’t lose it. 4- When downloading Certificates files from godaddy don’t select Server Type: IIS, but select Server Type: Other. -- rename the downloaded 2 files as described in the document above . 5- Use the right DLL files 32 or 64 according to your application type. Edit 2- IF you Are going install the certificate On IIS Server Flow below: - Generate csr.txt file using IIS as GoDaddy instructs. - VIP- When you copy the csr.txt Be very Carful there is a space at the end of the file don't uses select all or it will corrupt the certificate. -When downloading Certificates files from GoDaddy select Server Type: IIS regards
    1 point
  3. This would mean adding sometimes 3 or 4 action columns to the grid just to display the lookup information. This is not exactly the way the cell hint works in Devex but I am wondering if it is possible to use the tooltip to get the same behaviour... All my grids are in read-only mode. I guess I could use the OnCellClick to display the lookup information. Not as clean as passing the information in the tooltip but if it's not possible... Thank you
    1 point
  4. Hi Sherzod, I am converting this Delphi Win32 project which is using DevExpress grids and NexusDB database engine. One form can show information on up to 15 tables (grids) in a M/D relationship. The OnSelectionChange is used with a SetRange ( direct access cursors ) in most places for very fast performance and the same grid on the form can be used to display information from different tables ( views created dynamically ). Selecting the fields in the main query would mean converting everything to SQL or adding calcuted fields to almost every cursor in order to have access to the lookup information which would mean a lot of changes in the original code which is using the 'onGetCellHint' from the DevEx grid to access the information using a call to an external function. Can the client ExtEvent 'viewready' have access to data that is not already loaded in the grid? or is it just not supposed to and I am using it the wrong way? Than you again for your help, Denis Prince
    1 point
  5. Use function inside itemTpl: config.itemTpl= new Ext.XTemplate( '<table class="lsttbl">'+ '<tr>'+ '<td class="lsttbl_title" style="width:100px;padding-bottom:10px;">שם מוצר:</td>'+ '<td class="lsttbl_info" style="color:#e91e63;padding-bottom:10px;">{3}</td>'+ '</tr>'+ '<tr>'+ '<td class="lsttbl_title" style="padding-bottom:10px;">כמות:</td>'+ '<td class="lsttbl_info" style="padding-bottom:10px;">{4}</td>'+ '</tr>'+ '<tr>'+ '<td class="lsttbl_title" style="padding-bottom:10px;">זמן:</td>'+ '<td class="lsttbl_info" style="padding-bottom:10px;">{5}</td>'+ '</tr>'+ '</table>'+ '<img src="files/images/ic_prdct{7}.png" style="position:absolute;left:20px;top:15px;"/>'+ '{[this.getReady(values)]}', { getReady: function(values) { if(values[6]) return '<img src="files/images/ready.png" style="position:absolute;left:20px;top:20px;"/>'; else return ''; } } );
    1 point
×
×
  • Create New...